sapling/eden/scm
Jun Wu a320373977 manifest-tree: support writing git trees in Rust
Summary:
Make `flush()` able to write git trees.

Note: the `flush()` cannot write hg trees with genuine SHA1s, because it does
know p1 and p2. `finalize()` is used to write hg trees. `finalize()` has too
much hg complexity, which makes it less fesible for the git tree writes.
The "incorrect" `flush()` behavior for hg trees is kept for tests. Assertions
are added to ensure it's not misued.

Reviewed By: DurhamG

Differential Revision: D33237338

fbshipit-source-id: 390f1c8314f482b6ac3acf9b53c0626bedf1d76b
2021-12-21 12:36:52 -08:00
..
contrib codemod: our.intern.facebook.com -> internalfb.com 2021-12-08 19:40:13 -08:00
distutils_rust distutils_rust: retry on flacky MSVC errors 2021-11-05 16:04:37 -07:00
doc hggit: delete hggit 2021-09-21 13:45:11 -07:00
edenscm git: support basic status 2021-12-21 12:36:52 -08:00
edenscmnative git: support basic status 2021-12-21 12:36:52 -08:00
exec third-party/rust: Update anyhow from 1.0.48 to 1.0.51 2021-11-29 14:14:17 -08:00
hgcache_size_logger add hgcache size logger 2020-08-26 04:24:50 -07:00
i18n update draft help page 2021-08-02 15:54:03 -07:00
lib manifest-tree: support writing git trees in Rust 2021-12-21 12:36:52 -08:00
newdoc notes: add 2019-10 Manifests, Past and Future 2021-03-04 08:52:27 -08:00
pystubs suppress errors in fbcode/eden - batch 1 2021-11-16 12:54:39 -08:00
slides apply black 20.8b1 formatting update 2020-10-14 20:21:52 -07:00
tests git: support basic status 2021-12-21 12:36:52 -08:00
.editorconfig Move fb-mercurial sources into an eden/scm subdirectory. 2019-11-13 16:04:48 -08:00
.flake8 debugrebuildchangelog: support rebuild with lazy segmented changelog 2021-05-26 19:00:01 -07:00
.gitignore gitignore: track Makefile under scm 2021-03-04 08:52:27 -08:00
.rustfmt.toml rustfmt: set group_imports to StdExternalCrate 2021-10-19 11:07:24 -07:00
COPYING
fsprobe.sh fsprobe: add simple shell script to generate and run fsprobe tests 2021-09-14 19:52:15 -07:00
gen_version.py version: a Rust crate providing version information 2020-05-18 09:00:40 -07:00
hgeditor Move fb-mercurial sources into an eden/scm subdirectory. 2019-11-13 16:04:48 -08:00
Makefile update python to 3.8 2021-11-26 00:02:45 -08:00
README.rst Move fb-mercurial sources into an eden/scm subdirectory. 2019-11-13 16:04:48 -08:00
setup.py fix hg dbsh on windows by updating ipython and prompt_toolkit 2021-12-08 13:42:02 -08: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

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.