tests/test-mq-qnew-twice
author paul sorenson <sf@metrak.com>
Sat, 23 Jun 2007 22:25:11 -0500
changeset 4692 c135c6cddbec
parent 2976 61fcd9fac434
permissions -rwxr-xr-x
Command in doc comment is now on a single line, fixed after previous formatting broke it.

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