Created
March 30, 2013 13:46
-
-
Save reyoung/5276739 to your computer and use it in GitHub Desktop.
Personal Git Start Feature Script
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/sh | |
echo "Start Feature" | |
git pull origin | |
if [ "$?" = "0" ]; then | |
git flow feature start $1 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment