view tests/test-mq-qnew-twice @ 4691:ca4971347e0a

purge: don't delete ignored files if --all is not specified
author Emanuele Aina <em@nerd.ocracy.org>
date Wed, 06 Jun 2007 22:17:35 +0200
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