I'm regularly updating a production server which is running from an hg working directory. I always update to a merged/resolved changeset after testing that changeset in the development server, but want an extra layer of safety to see, before updating, which changes will be made (a diff so to speak between the current state of the files and the tip).

Any ideas?

link|improve this question

49% accept rate
feedback

1 Answer

up vote 3 down vote accepted

You can simply run a diff vs. the tip like so:

hg diff -r tip
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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