Fix issue dependency example for Mercurial.

The previous example was removing the temporary branch before
merging the changes in it to somewhere more permanent.
This commit is contained in:
Alexandre Vassalotti 2009-02-28 16:38:22 +00:00
parent f464bd118b
commit 1c44a69065
1 changed files with 5 additions and 2 deletions

View File

@ -1063,8 +1063,11 @@ to put temporarily aside.
hg unshelve
# Complete initial fix.
hg commit
cd ..
rm -rf issue0000
cd ../trunk
hg pull ../issue0000
hg merge
hg commit
rm -rf ../issue0000
Several other way to approach this scenario with Mercurial. Alexander Solovyov
presented a few `alternative approaches`_ on Mercurial's mailing list.