tests/test-mq-qnew-twice
author Thomas Arendsen Hein <thomas@intevation.de>
Wed, 06 Jun 2007 20:22:52 +0200
changeset 4516 96d8a56d4ef9
parent 2990 61fcd9fac434
permissions -rwxr-xr-x
Removed trailing whitespace and tabs from python files

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