Method: Git::Base#merge
- Defined in:
- lib/git/base.rb
permalink #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
469 470 471 |
# File 'lib/git/base.rb', line 469 def merge(branch, = 'merge', opts = {}) self.lib.merge(branch, , opts) end |