Skip to content

Instantly share code, notes, and snippets.

@yoursunny
Created February 14, 2017 16:22
Show Gist options
  • Save yoursunny/820a7a2f0df00cdb8e1fdce16d2c679e to your computer and use it in GitHub Desktop.
Save yoursunny/820a7a2f0df00cdb8e1fdce16d2c679e to your computer and use it in GitHub Desktop.
git cherry-pick a feature branch on top of current HEAD
#!/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