##// END OF EJS Templates
Clean up some merge logic...
Clean up some merge logic - rename mode to branch_merge - use explicit update mode - use negative mtime for updates that set mtime - expand some cryptic variable names - elaborate merge dirstate comments - remove redundant manifest lookup for non-merge case - remove impossible merge case - fix up test cases

File last commit:

r925:5a034646 default
r993:6f274afc default
Show More
test-tags
33 lines | 409 B | text/plain | TextLexer
Thomas Arendsen Hein
Remove bashisms and use /bin/sh instead of /bin/bash....
r544 #!/bin/sh
mpm@selenic.com
Add a tags/identify test group...
r345
mkdir t
cd t
hg init
hg id
echo a > a
hg add a
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg commit -m "test" -d "0 0"
mpm@selenic.com
Add a tags/identify test group...
r345 hg co
hg identify
mpm@selenic.com
run-tests: remove '+ hg' trick...
r925 T=`hg tip -v | head -n 1 | cut -d : -f 3`
mpm@selenic.com
Add a tags/identify test group...
r345 echo "$T first" > .hgtags
cat .hgtags
hg add .hgtags
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg commit -m "add tags" -d "0 0"
mpm@selenic.com
Add a tags/identify test group...
r345 hg tags
hg identify
echo bb > a
hg status
hg identify
hg co first
hg id
hg -v id
hg status
echo 1 > b
hg add b
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg commit -m "branch" -d "0 0"
mpm@selenic.com
Add a tags/identify test group...
r345 hg id
hg co -m 1
hg id
hg status