tests/test-mq-qnew-twice
author Matt Mackall <mpm@selenic.com>
Sun, 17 Sep 2006 20:43:06 -0500
changeset 3119 b1de36a4b4df
parent 2990 61fcd9fac434
permissions -rwxr-xr-x
merge: simplify prompt code

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