tests/test-mq-qnew-twice
author Jesse Glick <jesse.glick@sun.com>
Thu, 20 Dec 2007 07:46:47 -0800
changeset 5678 d3909674fcea
parent 2990 61fcd9fac434
permissions -rwxr-xr-x
man 5 hgrc implied you need to use external tools to do CRLF translation. This is no longer true; win32text provides a much better in-process alternative.

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