tests/test-mq-qnew-twice
author Thomas Arendsen Hein <thomas@intevation.de>
Thu, 14 Dec 2006 19:30:18 +0100
changeset 3883 6081b4c68baf
parent 2976 61fcd9fac434
permissions -rwxr-xr-x
Corrected synopsis for many commands. Use CMD instead of FILE for -e and --remotecmd (thanks, Neal Becker)

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