##// END OF EJS Templates
Update on pull -u when heads were closed (fixes issue666)....
Update on pull -u when heads were closed (fixes issue666). Patch written by Benoit Boissinot. This should probably be improved in the future to handle long-living branches, as joining two "other" heads will switch to that new head. But this is not a new problem, as adding to the "other" head would have switched to that new head, too.

File last commit:

r4736:04b2c1e2 default
r5080:73fdc8bd default
Show More
test-mq-qdelete
37 lines | 429 B | text/plain | TextLexer
Brendan Cully
mq: add qdelete --forget option...
r3088 #!/bin/sh
echo "[extensions]" >> $HGRCPATH
echo "mq=" >> $HGRCPATH
hg init a
cd a
echo 'base' > base
hg ci -Ambase -d '1 0'
hg qnew a
hg qnew b
hg qnew c
Brendan Cully
mq: require patch argument or revision for qdelete
r4736 hg qdel
Brendan Cully
mq: add qdelete --forget option...
r3088 hg qdel c
hg qpop
hg qdel c
hg qseries
ls .hg/patches
hg qpop
hg qdel -k b
ls .hg/patches
Brendan Cully
mq: make qdelete without -k or a subrepository delete all patches
r3375 hg qdel -r a
Brendan Cully
mq: add qdelete --forget option...
r3088 hg qapplied
hg log --template '{rev} {desc}\n'
hg qnew d
hg qnew e
hg qnew f
Brendan Cully
mq: make qdelete without -k or a subrepository delete all patches
r3375 hg qdel -r e
Brendan Cully
Update test-mq-qdelete to use qdel -r
r3376 hg qdel -r qbase:e
Brendan Cully
mq: add qdelete --forget option...
r3088 hg qapplied
hg log --template '{rev} {desc}\n'