tests/test-mq-qnew-twice
author Matt Mackall <mpm@selenic.com>
Wed, 02 Apr 2008 18:47:17 -0500
changeset 6452 d93f2f39bef4
parent 2990 61fcd9fac434
permissions -rwxr-xr-x
coal: more tweaks - add revision numbers to changeset, browse, and file pages - add revision number to revision number navigator in log - remove node from log and filelog pages - add changeset, browse, and archive buttons back to log page - make buttons more clickable with display: block - fix alignment of some table heads

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