Git shortcuts
I use git all the time when writing code and working. Below are some shortcuts and helpful things I use to make git easier to use or more enjoyable.
See a list of all contributors with their contributions
git shortlog -s -n
Push the current branch to remote
ggpush='git push origin $(git rev-parse --abbrev-ref HEAD)'