TortoiseHg allows you to email a patch file of your changes to someone, but does it support applying patches?

If so, how do you apply a patch using TortoiseHg?

Solution Thanks @Will Bickford for your help. I just found this feature listed as a TODO on the TortoiseHg site.

link|improve this question

Maybe we are introduce "import dialog" to TortoiseHg :) 0.9 will be shipped in November, 2009. – kuy Sep 10 '09 at 0:52
I hope so, but I didn't see it on the 0.9 road map yet. Still, the TortoiseHg team seems to have their act together, so I doubt it will take too long. – Michael La Voie Sep 10 '09 at 18:44
feedback

5 Answers

up vote 42 down vote accepted

From Repository Explorer, Synchronize > Import...

link|improve this answer
Good call. As of V1.0 patch importing is part is part of TortoiseHg – Michael La Voie Apr 5 '10 at 1:07
feedback

It looks like there is no built-in support in TortoiseHg for this. Try this from a command prompt:

hg import my-patch-file.patch

That should apply the patch to your Mercurial repo and working copy.

First Stab Answer

You should be able to right-click on the patch file and choose "Apply patch..." - that's how it works for other TortoiseX clients. Make sure that you save the patch file to the same directory path it was generated from.

Downloading TortoiseHg 0.8.1 to test...

link|improve this answer
Thanks for the suggestion. I don't see that option. – Michael La Voie Sep 9 '09 at 22:18
Yeah I downloaded it and it took me a while to find the "email patch" feature you were referring to. Tinkering... – Will Bickford Sep 9 '09 at 22:20
Thanks for the help, hopefully it will get added in a future release. – Michael La Voie Sep 9 '09 at 22:38
feedback

Tortoise Hg has documentation on creating and applying (importing) patches:

http://tortoisehg.bitbucket.org/manual/1.0/patches.html

link|improve this answer
Excellent! I hadn't seen the documentation. Its really high quality. – Michael La Voie Jun 18 '10 at 17:58
feedback

In 1.0, from Workbench: Repository > Import...

link|improve this answer
feedback

What may be also noteworthy is, that "Repository Explorer, Synchronize > Import..." (which internally does a "hg import") will automatically do a "commit" - this may not be always wanted behaviour.

Other possibility is to use unix "patch" command (on Windows perhaps use cygwin version) or use "hg import" directly with "--no-commit" option. Both will just make changes in working directory and you may review the changes and commit them later manually.

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.