##// END OF EJS Templates
Added test for earlygetopt fixes (36d23de02da1 and 79cc512a34ed)
Added test for earlygetopt fixes (36d23de02da1 and 79cc512a34ed)

File last commit:

r2990:61fcd9fa default
r4728:7bb5bcb0 default
Show More
test-mq-qnew-twice
14 lines | 180 B | text/plain | TextLexer
#!/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