tests/test-undo
author Vadim Gelfer <vadim.gelfer@gmail.com>
Fri, 04 Nov 2005 11:51:01 -0800
changeset 1583 32a4e6802864
parent 814 0902ffece4b4
child 1933 7544700fd931
permissions -rwxr-xr-x
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.

#!/bin/sh

mkdir t
cd t
hg init
echo a > a
hg add a
hg commit -m "test" -d "0 0"
hg verify
hg parents
hg status
hg undo
hg verify
hg parents
hg status