Mercurial: Creating a diff of two commits
- by DerKuchen
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?