tests/test-mq-qnew-twice
author Thomas Arendsen Hein <thomas@intevation.de>
Sat, 16 Dec 2006 23:33:24 +0100
changeset 3918 5f0e00224cde
parent 2976 61fcd9fac434
permissions -rwxr-xr-x
Adjust test-help output for the change in 3c82ab166eea.

#!/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