Reputation: 1572
I am using TortoiseHg GUI and it seems that there is no way to export diffs between my uncommited changes and the last revision. Is there a way to do it using hg ?
My requirements :
Upvotes: 10
Views: 3430
Reputation: 61
It can be done very simply by a patch file via
hg diff > foo.patch
Then the patch can be applied on the other repo via
hg import --no-commit foo.patch
Upvotes: 6
Reputation: 462
From the command line hg diff
will show the differences in the repository using the unified diff format.
Upvotes: 3
Reputation: 2219
Upvotes: 8