Skip to content

Instantly share code, notes, and snippets.

@torbjornvatn
Created December 13, 2010 18:53
Show Gist options
  • Save torbjornvatn/739406 to your computer and use it in GitHub Desktop.
Save torbjornvatn/739406 to your computer and use it in GitHub Desktop.
Hack script inspired by this blog: http://reinh.com/blog/2008/08/27/hack-and-and-ship.html
# HACK
TO_HACK_WITH=$1
CURRENT=`git branch | grep '\*' | awk '{print $2}'`
if [ -z $TO_HACK_WITH ]; then
echo "First argument has to be one of these branches:"
git branch | grep -v $CURRENT
exit 1
fi
STATUS=`git checkout $TO_HACK_WITH | awk '{print $1}'`
if [[ "${STATUS}" =~ error ]]; then
echo "Something went terribly wrong! ${STATUS}"
git checkout $CURRENT
exit 1
fi
git pull && \
git checkout $CURRENT && \
git rebase $TO_HACK_WITH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment