Created
March 31, 2010 10:13
-
-
Save leoallen85/350160 to your computer and use it in GitHub Desktop.
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
echo "Updating local server..."; | |
#git pull | |
git status | |
echo "Please enter you message"; | |
read -e MESSAGE; | |
if [$MESSAGE != '']; | |
echo "Committing all files..."; | |
git commit -a -m "$MESSAGE"; | |
fi; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment