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 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
|
|||||
|
|
Just remove |
|||||
|
|
I know the question is for a single changeset, but if you'd like to get all the files modified for a range of changesets, you can do
|
|||||||
|