Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pulling changes between two separate Mercurial repositories

Tags:

mercurial

I have two versions of a product and am using separate Hg repositories for each. I have made a change to one (v1.0) and I want to pull just that change into the v2.0 repository. How do I go about this? As far as I can tell, using hg pull -f -r xxxxx \\server\hg\v1.0 will pull in all changes up to the specified revision which isn't what I want.

Is this possible or will I have to add the fix by hand?

like image 771
Rob Avatar asked Feb 27 '23 07:02

Rob


1 Answers

hg transplant

like image 122
wRAR Avatar answered Mar 08 '23 11:03

wRAR