Skip to content

Instantly share code, notes, and snippets.

@hussanhijazi
Created September 9, 2013 17:18
Show Gist options
  • Save hussanhijazi/6498732 to your computer and use it in GitHub Desktop.
Save hussanhijazi/6498732 to your computer and use it in GitHub Desktop.
#!/bin/bash
cd /home/user/projectgit
git add ./
echo -n "- Type a message: "
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