How can you determine all the files that changed in a given changeset?
I'm not looking for a diff in this case, just a list of add/remove/modifications.
hg log -vprX
does a list of diffs but I just want the files.
If you are using the terminal in windows add hg status --rev x:y > your-file. txt to save the list to a file. To only see changes in the current directory: hg status --rev x:y .
A changeset (sometimes abbreviated "cset") is an atomic collection of changes to files in a repository. It contains all recorded local modification that lead to a new revision of the repository. A changeset is identified uniquely by a changeset ID. In a single repository, you can identify it using a revision number.
If you want to list only files that have changed then you should be using "status command" The following will list the changes to files in revision REV
hg status --change REV
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