##// END OF EJS Templates
convert: refactor sink initialisation, to remove hardcoding of hg...
convert: refactor sink initialisation, to remove hardcoding of hg We also introduce options to explicitly set the source and destination repository types. Improve testing of corner cases a little.

File last commit:

r2990:61fcd9fa default
r5441:71e7c86a 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