Skip to content

Instantly share code, notes, and snippets.

@yuki2006
Last active August 29, 2015 14:09
Show Gist options
  • Save yuki2006/1dfba21d7d68c5668d7e to your computer and use it in GitHub Desktop.
Save yuki2006/1dfba21d7d68c5668d7e to your computer and use it in GitHub Desktop.
現在のブランチをmasterにマージしてプッシュし、元のブランチにチェックアウトするシェルスクリプト
current=`git rev-parse --abbrev-ref HEAD`
git checkout master || exit
git merge ${current} || exit
git push || exit
git checkout ${current}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment