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.
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.
hg status --change .
. is shorthand for the current rev, just like @HEAD in Git
hg status
hg status --change REV_ID