tests/test-mq-qnew-twice
author Patrick Mezard <pmezard@gmail.com>
Sun, 23 Sep 2007 18:24:19 +0200
changeset 5320 8409a2e3a78d
parent 2976 61fcd9fac434
permissions -rwxr-xr-x
revlog: fix inlined revision transaction extra data (issue 749)

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