A Scalable, User-Friendly Source Control System.
Go to file
Adrian Buehlmann 35765bcb3b fncachestore: defer updating the fncache file to a single file open
Defers updating the fncache file with newly added entries to the end of
the transaction (on e.g. pull), doing a single open call on the fncache
file, instead of opening and closing it each time a new entry is added
to the store.

Implemented by adding a new abstract write() function on store.basicstore
and registering it as a release function on the store lock in
localrepo.lock (compare with dirstate.write).

store.fncachestore overrides write() from basicstore and calls a new
write function on the fncache object, which writes all entries to the
fncache file if it's dirty.

store.fncache.add() now just marks itself as dirty if a new name is added.
2011-01-28 13:38:34 +01:00
contrib contrib: add win32/buildlocal.bat 2011-02-13 11:14:46 +01:00
doc doc: Capitalize the "options" header of mercurial commands 2011-02-05 14:37:25 +00:00
hgext merge with stable 2011-02-14 14:12:48 -06:00
i18n merge with stable 2011-02-01 17:52:25 -06:00
mercurial fncachestore: defer updating the fncache file to a single file open 2011-01-28 13:38:34 +01:00
tests tests: sort fncache 2011-01-28 13:54:38 +01:00
.hgignore hgignore: ignore more bytecode 2011-02-03 07:58:54 +01:00
.hgsigs Added signature for changeset 7008795244f6 2011-02-01 17:30:13 -06:00
CONTRIBUTORS Add note to CONTRIBUTORS file 2007-11-07 21:10:30 -06:00
COPYING Add COPYING 2005-06-17 09:32:13 -08:00
hg setup/hg: handle hg being a symlink when appending relative libdir to sys.path 2010-10-21 09:58:22 -07:00
hgeditor Fixed a bashism with the use of $RANDOM in hgeditor. 2010-05-19 18:06:35 +02:00
hgweb.cgi *: add executable bit to a few files that were missing it. 2010-10-26 12:18:37 +02:00
Makefile build: don't delete precious version information on 'make clean' 2010-12-08 11:18:26 -06:00
README README: add small introduction 2010-10-27 12:05:37 +02:00
setup.py *: kill all unnecessary shebangs. 2010-10-26 12:18:39 +02:00

Mercurial
=========

Mercurial is a fast, easy to use, distributed revision control tool
for software developers.

Basic install:

 $ make            # see install targets
 $ make install    # do a system-wide install
 $ hg debuginstall # sanity-check setup
 $ hg              # see help

See http://mercurial.selenic.com/ for detailed installation
instructions, platform-specific notes, and Mercurial user information.