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:
parent
f464bd118b
commit
1c44a69065
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue