Skip to content

Instantly share code, notes, and snippets.

@hussanhijazi
Created September 25, 2013 16:03
Show Gist options
  • Save hussanhijazi/6701863 to your computer and use it in GitHub Desktop.
Save hussanhijazi/6701863 to your computer and use it in GitHub Desktop.
#!/bin/bash
cd /home/site/git
git add ./
echo -n "- Digite a mensagem: "
read character
if [ "$character" = "" ]; then
message="$(date)"
else
message=$character
fi
git commit -a -m "$message"
git push
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment