Sha256: c29f20d85f53f7d462cec9d2c97e0610f9847be77d5a17eb07959ae8bbc540ef
Contents?: true
Size: 530 Bytes
Versions: 23
Compression:
Stored size: 530 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-branch foobar' merges the current branch into foobar. # 'git merge-branch', merges the current branch into master. # git merge-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
23 entries across 23 versions & 1 rubygems