##// END OF EJS Templates
convert: better grouping of command line flags in help...
convert: better grouping of command line flags in help We normally put related command line flags after one another.

File last commit:

r12156:4c94b6d0 default
r12187:4a854122 default
Show More
test-unrelated-pull
20 lines | 187 B | text/plain | TextLexer
#!/bin/sh
mkdir a
cd a
hg init
echo 123 > a
hg add a
hg commit -m "a" -u a
cd ..
mkdir b
cd b
hg init
echo 321 > b
hg add b
hg commit -m "b" -u b
hg pull ../a
hg pull -f ../a
hg heads