##// END OF EJS Templates
document and fix findincoming...
document and fix findincoming - add documentation about what the function does, notably the fact that it updates 'base' - transform the workflow to a more simple 'if elif elif else' - do not call remote.branches if not necessary - some nodes where missing in 'base' (from what I understand, if the root of a branch is missing but one parent is present, the parent should be in 'base') - add a testcase for an incorrect outgoing that is fixed by this cset - add a testcase for an empty group bug, it needs fixing

File last commit:

r2309:b2f37c70 default
r2339:11422943 default
Show More
test-remove
32 lines | 371 B | text/plain | TextLexer
mpm@selenic.com
Add a simple remove test
r936 #!/bin/sh
hg init a
cd a
echo a > foo
Vadim Gelfer
remove: rewrite to be ~400x faster, bit more friendly...
r2309 hg rm foo
mpm@selenic.com
Add a simple remove test
r936 hg add foo
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m 1 -d "1000000 0"
Vadim Gelfer
make test-remove check some more cases.
r2180 hg remove
mpm@selenic.com
Add a simple remove test
r936 rm foo
hg remove foo
Vadim Gelfer
make test-remove check some more cases.
r2180 hg revert
rm foo
hg remove --after
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m 2 -d "1000000 0"
TK Soh
change default strftime format for better portability...
r1953 hg export 0
hg export 1
hg log -p -r 0
hg log -p -r 1
mpm@selenic.com
Add a simple remove test
r936
Vadim Gelfer
remove: rewrite to be ~400x faster, bit more friendly...
r2309 echo a > a
hg add a
hg rm a
hg rm -f a
echo b > b
hg ci -A -m 3 -d "1000001 0"
echo c >> b
hg rm b
hg rm -f b
mpm@selenic.com
Add a simple remove test
r936 cd ..
hg clone a b