is it possible to play a git diff in the changes brought by the automatic merge after a git pull?

Usually, if there are any conflicts i can check on those using normal git diff, but no idea how to do it when the pull was successful (and the changes were automatically commited)

link|improve this question

72% accept rate
feedback

1 Answer

up vote 1 down vote accepted

If you've just done the git pull you can look the difference between the current HEAD and the previous one with something like:

git diff HEAD@{1}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.