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
hg status --change REV