tests/test-mq-qnew-twice
author Matt Mackall <mpm@selenic.com>
Tue, 18 Dec 2007 15:40:46 -0600
changeset 5666 9d6ad26fab10
parent 2990 61fcd9fac434
permissions -rwxr-xr-x
fix spelling error

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