Method: Git::Base#merge

Defined in:
lib/git/base.rb

#merge(branch, message = 'merge', opts = {})

merges one or more branches into the current working branch

you can specify more than one branch to merge by passing an array of branches

[View source]

469
470
471
# File 'lib/git/base.rb', line 469

def merge(branch, message = 'merge', opts = {})
  self.lib.merge(branch, message, opts)
end