tests/test-mq-qnew-twice
author Matt Mackall <mpm@selenic.com>
Sat, 22 Mar 2008 13:30:08 -0500
changeset 6350 6aa4a3fa4e60
parent 2990 61fcd9fac434
permissions -rwxr-xr-x
update: no -C needed to switch branches without outstanding changes

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