Mercurial - all files that changed in a changeset?

Marcus Leon picture Marcus Leon · Sep 24, 2010 · Viewed 56.1k times · Source

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.

Answer

pyfunc picture pyfunc · Sep 24, 2010

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