view tests/test-mq-qnew-twice @ 4775:739fd34f5d66

convert: svn: disable batched fetch - get the whole log immediately
author Brendan Cully <brendan@kublai.com>
date Mon, 02 Jul 2007 07:54:51 -0700
parents 61fcd9fac434
children
line wrap: on
line source

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