Is there a way to get the changes of two commits with mercurial? The second commit is not directly after the first one, there are some other ones between them.

I tried

hg diff [some params] --change xxxxx --change yyyyy > file.patch

but that only includes the last changeset.

If there is no way to achieve this with hg, is there maybe a tool to combine patches?

link|improve this question
feedback

2 Answers

up vote 3 down vote accepted

i came upon this page while trying to figure this very thing out. I found my solution via hg help diff .

hg diff -r <rev> -r <rev> worked for my needs (diffing between two tags)

link|improve this answer
You can diff between any two revisions, they don't need to be tagged. – Johannes Rudolph May 24 '10 at 6:21
Thanks for the answer! – DerKuchen May 25 '10 at 13:47
feedback

An external diff

hg extdiff -r <rev1> -r <rev2> will allow you to use your fav diff tool (meld in my case).

Add this section ...

[extdiff]
cmd.extdiff = meld

to your .hgrc file. Obviously replace meld with the command used to launch your preferred tool

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.