##// END OF EJS Templates
update the branch cache at the end of addchangegroup...
update the branch cache at the end of addchangegroup This should avoid a bad performance problem when the branch cache is not up-to-date, and hgweb can't write an updated version because it lacks permissions.

File last commit:

r5158:d316124e default
r5988:ee317dbf default
Show More
test-audit-path
23 lines | 236 B | text/plain | TextLexer
#!/bin/sh
hg init
echo % should fail
hg add .hg/00changelog.i
mkdir a
echo a > a/a
hg ci -Ama
ln -s a b
echo b > a/b
echo % should fail
hg add b/b
echo % should succeed
hg add b
echo % should still fail - maybe
hg add b/b
exit 0