tests/test-mq-qnew-twice
author Matt Mackall <mpm@selenic.com>
Wed, 13 Aug 2008 20:18:43 -0500
changeset 6899 56a7a54e074f
parent 2990 61fcd9fac434
permissions -rwxr-xr-x
store: simplify walking - fold in main walking function - eliminate recursion (especially recursive yielding!) - eliminate default args

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