tests/test-mq-qgoto
author Giorgos Keramidas <keramida@ceid.upatras.gr>
Sun, 24 Jun 2007 10:08:38 -0500
changeset 4699 a6b62584d0b2
parent 4432 905397be7688
permissions -rwxr-xr-x
unbundle: accept multiple file arguments update test-bundle for multiple unbundle support

#!/bin/sh

echo "[extensions]" >> $HGRCPATH
echo "mq=" >> $HGRCPATH

hg init a
cd a
echo a > a
hg ci -Ama

hg qnew a.patch
echo a >> a
hg qrefresh

hg qnew b.patch
echo b > b
hg add b
hg qrefresh

hg qnew c.patch
echo c > c
hg add c
hg qrefresh

hg qgoto a.patch
hg qgoto c.patch
hg qgoto b.patch