To view the changes between your latest git pull
1$~ git pull origin
2$~ 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.