tests/test-mq-qnew-twice
author Thomas Arendsen Hein <thomas@intevation.de>
Sun, 18 Mar 2007 12:20:15 +0100
changeset 4239 417c2068cb92
parent 2990 61fcd9fac434
permissions -rwxr-xr-x
Simplified qseries and hg qapplied to fix some bugs caused by optimization: - hg qapplied -v now works consistendly to hg qunapplied -v, i.e. showing guarded (or unapplied because they were guarded during hg qpush) patches. - hg qapplied <patchname> now works again

#!/bin/sh

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

hg init a
cd a
hg qnew first.patch
hg qnew first.patch

touch ../first.patch
hg qimport ../first.patch

exit 0