When you run pull
command (and if it succeeds) it shows you something like this:
984ed83..af3ad3c master -> origin/master
and then I usually run git lg
which is my alias I set for
log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
this shows the log in "easy to read" way. Although I still need to scan the log with my eyes and find the first hash and then read everything upward from that point.
Now I'm wondering if it's possible, after a successful pull to see log but only from the last changed hash up to the head?