Method: Git::Base#merge
- Defined in:
- lib/git/base.rb
#merge(branch, message = 'merge') ⇒ Object
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
335 336 337 |
# File 'lib/git/base.rb', line 335 def merge(branch, = 'merge') self.lib.merge(branch, ) end |