views:

49

answers:

2

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.

+4  A: 

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
pyfunc
+1, but the OP probably wants the `-n` / `--no-status` flag too.
Niall C.
+1  A: 

Just remove p from your hg log -vpr will show the list of files. -p means show patch. You can also use a template to format the output to your taste.

Geoffrey Zheng
I think you will need the following template: --template 'files: {files}\n'
Ton