I'm working with a remote repository on a project. What I did just now was fetch the master branch and merge it with my local master branch. It showed that three files were affected. So far so good.
Now I want to see what the other person changed in one of these files. Let's say that file is Models/GetUser.php
. I tried git diff Models/GetUser.php
but of course that won't work as the changes are merged by now.
How can this be done?