Tags and Aliases
Git Aliases
To set up an alias for each command so you won't have to write the whole command
$ git config --global alias.ci commit
$ git config --global alias.unstage 'reset HEAD --'
To add a 'last' command, so you can see the last commit, you can do this
$ git config --global alias.last 'log -1 HEAD'