mirror of
https://github.com/facebook/sapling.git
synced 2025-01-06 04:43:19 +03:00
A Scalable, User-Friendly Source Control System.
66cef07cf9
Summary: Add a way to explicitly `fsync` data to reduce changes of data corruption in case of hard reboots. If `fsync` is set on a `Log`, it sets `fsync` recursively on its indexes and checksum tables. If frequent `fsync` is an issue, it might be possible to only `fsync` the source of truth (log and meta) and have other logic to rebuild indexes on demand. `fsync` on btrfs seems to be relatively cheap (comparing to ext4), so maybe this is fine for btrfs users. Reviewed By: markbt Differential Revision: D16926659 fbshipit-source-id: a9de2fa352f607fe6f0b9d36047323862770f2e6 |
||
---|---|---|
contrib | ||
distutils_rust | ||
doc | ||
edenscm | ||
edenscmnative | ||
exec | ||
i18n | ||
lib | ||
newdoc | ||
slides | ||
tests | ||
.editorconfig | ||
.flake8 | ||
.gitignore | ||
.hgsigs | ||
.jshintrc | ||
CONTRIBUTING | ||
CONTRIBUTORS | ||
COPYING | ||
gen_version.py | ||
hgeditor | ||
hgweb.cgi | ||
Makefile | ||
README.rst | ||
setup.py |
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 Running without installing:: $ make local # build for inplace usage $ ./hg --version # should show the latest version See https://mercurial-scm.org/ for detailed installation instructions, platform-specific notes, and Mercurial user information.