tests/test-mq-qnew-twice
author Thomas Arendsen Hein <thomas@intevation.de>
Sat, 21 Oct 2006 20:19:46 +0200
changeset 3473 2896ce093ec4
parent 2976 61fcd9fac434
permissions -rwxr-xr-x
Add #motd# to gitweb pages. Needs to pass self.motd to index template, too.

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