tests/test-mq-qnew-twice
author Bryan O'Sullivan <bos@serpentine.com>
Mon, 06 Aug 2007 15:37:14 -0700
changeset 5107 c14968344d19
parent 2976 61fcd9fac434
permissions -rwxr-xr-x
convert: remove accidental debug print

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