tests/test-mq-qnew-twice
author Steve Borho <steve@ageia.com>
Tue, 02 Oct 2007 20:22:33 +0200
changeset 5350 1df76921aab3
parent 2976 61fcd9fac434
permissions -rwxr-xr-x
set_exec: do not chmod a symlink

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