Script for automating the most common git tasks.
Check status
git status
g check
Pull from origin/master
git pull
g pull
Send to origin/master
git add --all
git commit -m "...."
git push origin master
g send