Skip to content

Instantly share code, notes, and snippets.

@reyoung
Created March 30, 2013 13:46
Show Gist options
  • Save reyoung/5276739 to your computer and use it in GitHub Desktop.
Save reyoung/5276739 to your computer and use it in GitHub Desktop.
Personal Git Start Feature Script
#!/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