Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

3 Answers

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
share|improve this answer
3  
+1, but the OP probably wants the -n / --no-status flag too. – Niall C. Sep 24 '10 at 17:32

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.

share|improve this answer
1  
I think you will need the following template: --template 'files: {files}\n' – Ton Plomp Sep 26 '10 at 8:16

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

hg status --rev 1 --rev 10 -m
share|improve this answer
Terrible bad. Files, modified in range is hg log -r BEGIN:END --template "{files}\n" as @geoffrey-zheng and @ton wrote two years ago!!! – Lazy Badger Oct 31 '12 at 21:03
Sorry about that. Assumed their answer was for the single changeset. – Nick DeVore Nov 1 '12 at 15:16
Though, while perhaps not the best, it does work ;) – Nick DeVore Nov 1 '12 at 15:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.