This file contains hidden or 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 | |
# fast-forward local tracking branch if you get something like (on git checkout): | |
# Your branch is behind 'origin/master' by 1 commit, and can be fast-forwarded. | |
# Author: Valentin Haenel <[email protected]> | |
# Licence: wtfpl <http://sam.zoy.org/wtfpl/> | |
BRANCH=$( git branch | grep ^* | cut -f1 -d' ' --complement ) | |
if [[ -z $BRANCH ]] ; then | |
# not a git repository | |
exit 1 |