tests/test-mq-qnew-twice
author Dirkjan Ochtman <dirkjan@ochtman.nl>
Sun, 29 Jun 2008 11:35:08 +0200
changeset 6780 4c1d67e0fa8c
parent 2990 61fcd9fac434
permissions -rwxr-xr-x
hgweb: move capabilities calculation back into hgweb.protocol

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