Sha256: cd1d8b9596878739c9a0ed81c65f9327c1d3d11fb30ef3d6724e4e0baf2bdf55
Contents?: true
Size: 545 Bytes
Versions: 6
Compression:
Stored size: 545 Bytes
Contents
#!/usr/bin/env ruby $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', 'lib') require 'git-utils/merge_branch' # Merges the current branch into the given branch (defaults to master). # E.g., 'git merge-into-branch foobar' merges the current branch into foobar. # 'git merge-into-branch', merges the current branch into master. # git merge-into-branch uses the --no-ff --log options to ensure that the # merge creates a new commit object and that the individual commits appear # in the log file. exit Command.run!(MergeBranch, ARGV.dup)
Version data entries
6 entries across 6 versions & 1 rubygems