tests/test-mq-qnew-twice
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
Fri, 15 Feb 2008 23:38:18 -0200
changeset 6127 25c372e8f261
parent 2990 61fcd9fac434
permissions -rwxr-xr-x
Simplify the output of test-bheads Also remove unneeded -d and -u commit options.

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