Diffing with git
Diffing with git is hard so I wrote an alias in order to make my life easier.
alias git-diff-master='git diff master...`git rev-parse --abbrev-ref HEAD`'
Run that little alias and you are good to go when you need to check what you have changed.
bye