##// END OF EJS Templates
subrepo: change default path in hgrc of subrepo after cloning...
subrepo: change default path in hgrc of subrepo after cloning Previous behavior was to put in the cloned subrepos the path found in the original main repo. However it isn't valid for relative path and it seems more logical to reference instead the subrepos working copy path of the original main repo.

File last commit:

r4387:93a4e72b default
r10378:e1401c74 default
Show More
test-conflict
15 lines | 244 B | text/plain | TextLexer
Thomas Arendsen Hein
Remove bashisms and use /bin/sh instead of /bin/bash....
r544 #!/bin/sh
mpm@selenic.com
merge3: fix argument order...
r346
hg init
echo "nothing" > a
hg add a
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m ancestor -d "1000000 0"
mpm@selenic.com
merge3: fix argument order...
r346 echo "something" > a
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m branch1 -d "1000000 0"
mpm@selenic.com
merge3: fix argument order...
r346 hg co 0
echo "something else" > a
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m branch2 -d "1000000 0"
Vadim Gelfer
deprecate 'update -m'. use 'merge' instead.
r2283 hg merge 1
mpm@selenic.com
merge3: fix argument order...
r346 hg id
Alexis S. L. Carvalho
run-tests.py: pass -L/--label to simplemerge...
r4387 cat a
mpm@selenic.com
merge3: fix argument order...
r346 hg status