>>> "UB" == Uwe Brauer <o...@mat.ucm.es> writes:

> Hi 

> Consider please the following example 


Sorry my bad

hg init
echo "First" > test.org
hg add test.org
hg commit  -m "0: First"
echo "Second" >> test.org
hg commit  -m "1: Second"
echo "Third" >> test.org
hg commit  -m "2: Third"
hg up default~1
hg  branch feature
echo "Forth" >> test.org
hg commit  -m "3: BUG Fourth"
echo "Fifth" >> test.org
hg commit  -m "4: Fifth"
hg up default
echo "Six" >> test.org
hg commit  -m "5: Six"
hg up default
##

hg up -r 1
hg topic fix
hg graft 3::4 --log  



Does what I want.

Attachment: smime.p7s
Description: S/MIME cryptographic signature

_______________________________________________
Mercurial mailing list
Mercurial@lists.mercurial-scm.org
https://lists.mercurial-scm.org/mailman/listinfo/mercurial

Reply via email to