Viewing the git diff since the last git pull
To view the changes between your latest git pull
$~ git pull origin
$~ git diff @{1}..
@{n}
means the n-th previous value of HEAD
. You can refer the official docs on reflog Shortnames for more.
p/s: I am currently trying to dissociate myself from becoming too dependent on SourceTree for daily git operations.