tests/test-mq-qnew-twice
author Thomas Arendsen Hein <thomas@intevation.de>
Tue, 19 Dec 2006 15:37:10 +0100
changeset 3937 05c703c281ff
parent 2976 61fcd9fac434
permissions -rwxr-xr-x
purge extension doesn't need "#!/usr/bin/env python". (from the Debian package: deb_specific__hgpurge.py.patch)

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