tests/test-mq-qnew-twice
author Bryan O'Sullivan <bos@serpentine.com>
Tue, 08 May 2007 11:54:39 -0700
changeset 4427 b59611e9dd64
parent 2990 61fcd9fac434
permissions -rwxr-xr-x
mq.el: add hook to run when finishing the edit of a patch.

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