##// END OF EJS Templates
make mercurial look in more places for config files....
make mercurial look in more places for config files. now it searches <install dir>/etc/mercurial, /etc/mercurial, and user hgrc. this allows site-wide configuration to be shared over automounted nfs partition, instead of chenging on every system. option of having local configuration on every system remains. old code for searching /etc/mercurial/hgrc.d never worked, this code is tested and works.

File last commit:

r1236:67a28636 default
r1583:32a4e680 default
Show More
test-revert-unknown
20 lines | 256 B | text/plain | TextLexer
#!/bin/sh
hg init
touch unknown
touch a
hg add a
hg ci -m "1" -d "0 0"
touch b
hg add b
hg ci -m "2" -d "0 0"
echo %% Should show unknown
hg status
hg revert -r 0
echo %% Should show unknown and b removed
hg status
echo %% Should show a and unknown
ls