##// END OF EJS Templates
add other dir/file case to test for issue322.
add other dir/file case to test for issue322.

File last commit:

r2714:85070b78 default
r2949:7356fa3c 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