After I do git pull, I want to see the revisions I just fetched in gitk. How can I do this? I know I can see what revisions to use in the output of git pull and I can give them as a parameter to gitk, but I want to do this automatically.
(Actually, I don’t need to see all the fetched revisions, those from the current branch are sufficient.)
I use msysgit‘s git bash.
You can try a command similar to the ones used in “How can I see incoming commits in git?“
, using the
<rev>part of the “gitk [<option>…] [<revs>] [--] [<path>…]” syntax.