tests/test-mq-qnew-twice
author Bryan O'Sullivan <bos@serpentine.com>
Mon, 06 Aug 2007 14:59:00 -0700
changeset 5133 745cffe59ca8
parent 2990 61fcd9fac434
permissions -rwxr-xr-x
convert: use '.' as destination name if renaming subdir into root

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