In Mercurial, how do you examine a single changeset? hg log -l 5 will give me a summary of the newest 5 changesets, but how do I get a list of the files changed in one changeset? I don't want to do a diff.
Pass -v to log and it will print out additional information, including a list of files changed.
Example:
hg log -v -r<rev> | grep ^files
I was looking for the same thing and found the following command, which is more what I was looking for:
hg status --change <rev>
Found in this article.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With