##// END OF EJS Templates
make test-mq-qdiff executable.
make test-mq-qdiff executable.

File last commit:

r2714:85070b78 default
r2917:143cd235 default
Show More
test-mq-qnew-twice
15 lines | 225 B | text/plain | TextLexer
#!/bin/sh
HGRCPATH=$HGTMP/.hgrc; export HGRCPATH
echo "[extensions]" >> $HGTMP/.hgrc
echo "mq=" >> $HGTMP/.hgrc
hg init a
cd a
hg qnew first.patch
hg qnew first.patch
touch ../first.patch
hg qimport ../first.patch
exit 0