tests/test-mq-qnew-twice
author Christian Ebert <blacktrash@gmx.net>
Thu, 28 Jun 2007 02:11:54 +0200
changeset 4817 c10d3bc05a8d
parent 2976 61fcd9fac434
permissions -rwxr-xr-x
setup.py not executable: change instructions at beginning of file

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