After I pull a new head into my repository, I want to see what files are touched by the new head. Like an hg status
but without changing over to it. I don't want the whole diff, just an overview.
Which I expect is a specific version of the more general question: how do i see a summary of the changes in a specific revision?
This is on the commandline, I don't want to fire up TortoiseHG or some other GUI.
hg log --patch -r REV
– Topheavy