##// END OF EJS Templates
Fix Debian bug #494889 (fetching from static-http://... broken)...
Fix Debian bug #494889 (fetching from static-http://... broken) Changeset 6605a03cbf87 which fixed issue965 (hg clone static-http does not work for empty repos) broke cloning of repos with old layout (without store) via static-http. This fix makes cloning from old-style repositories possible again, but will not allow cloning of empty old-style repositories as this can not be detected reliably.

File last commit:

r7020:5e996540 default
r7178:98b6c3dd 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'