Skip to content

Instantly share code, notes, and snippets.

@leoallen85
Created March 31, 2010 10:13
Show Gist options
  • Save leoallen85/350160 to your computer and use it in GitHub Desktop.
Save leoallen85/350160 to your computer and use it in GitHub Desktop.
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