Created
February 14, 2017 16:22
-
-
Save yoursunny/820a7a2f0df00cdb8e1fdce16d2c679e to your computer and use it in GitHub Desktop.
git cherry-pick a feature branch on top of current HEAD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script cherry-picks the top commit of a feature branch onto the current HEAD. | |
# It is designed to work with NDN Gerrit https://gerrit.named-data.net/ | |
# This script should be placed outside of the repository directory. | |
# Suppose your repository looks like: | |
# A---B---C <== master | |
# \ | |
# \-D <== feature1 | |
# After checking out master, executing `../cherry-pick.sh feature1` gives you: | |
# A---B---C <== master | |
# \ | |
# \-D' <== feature1 | |
BRANCH=$1 | |
SHA1=$(git log $BRANCH | head -1 | awk '{print $2}') | |
git branch -D $BRANCH | |
git checkout -b $BRANCH | |
git cherry-pick $SHA1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment