sapling/eden/scm
Zhaolong Zhu dd514e6692 copytrace: make read_renamed_metadata API async
Summary:
Our current practice is only using `block_on` in Python bindings, so this diff is to change the `read_rename_metadata` to an Async function and also remove the `block_on`s in its implementations, so it is consistent with other APIs.

In the longterm, we'd like to remove those Async APIs, but we will to use a lib to help us migrate them in an automatic way, consistent APIs will make the migration process eaiser.

Reviewed By: quark-zju

Differential Revision: D44199939

fbshipit-source-id: a75d1356e373f3d883da4ab972520a665587eb23
2023-03-28 13:28:54 -07:00
..
contrib chg: fix some compilation warnings on Mac 2023-03-27 13:34:31 -07:00
distutils_rust distutils_rust: fix Windows detection 2023-03-16 16:50:14 -07:00
doc collapse edenscm.mercurial package into edenscm 2022-08-24 13:45:53 -07:00
edenscm Update githelp to advise when sl clean --dirs is necessary (#575) 2023-03-28 12:47:24 -07:00
edenscmnative copytrace: make read_renamed_metadata API async 2023-03-28 13:28:54 -07:00
exec ctrlc: move ctrlc setup to after os.fork 2023-03-14 12:35:19 -07:00
ghstack upgrade pyre version in fbcode/eden - batch 1 2023-03-20 07:02:53 -07:00
hgcache_size_logger Build for aarch64 in addition to x86_64 2022-08-03 07:09:58 -07:00
i18n docs: clarify help for "-I" and "-X" flags 2022-11-13 23:38:55 -08:00
lib copytrace: make read_renamed_metadata API async 2023-03-28 13:28:54 -07:00
newdoc newdoc: remove outdated content 2022-12-01 14:33:34 -08:00
packaging symlinks: remove support for cygwin 2023-03-02 13:14:36 -08:00
pystubs upgrade pyre version in fbcode/eden - batch 1 2023-02-06 11:55:20 -08:00
slides collapse edenscm.mercurial package into edenscm 2022-08-24 13:45:53 -07:00
tests Update githelp to advise when sl clean --dirs is necessary (#575) 2023-03-28 12:47:24 -07:00
.editorconfig
.flake8 localrepo: expose tonodes in dageval 2023-03-06 10:23:37 -08:00
.gitignore git: respect 'default-push' path if present (#469) 2023-02-17 12:04:00 -08:00
.rustfmt.toml rustfmt: set group_imports to StdExternalCrate 2021-10-19 11:07:24 -07:00
Cargo.toml nodeipc: utility to communicate with nodejs via a side channel 2023-03-28 09:22:28 -07:00
COPYING
fsprobe.sh codemod: update license headers 2022-01-05 14:43:32 -08:00
gen_version.py Add annotations to eden 2022-02-14 12:17:43 -08:00
hgeditor
Makefile getdeps: remove test-getdeps from Sapling manifest (#4373) 2023-03-21 13:04:28 -07:00
README.md migrate README.rst to README.md 2022-07-20 09:19:09 -07:00
setup.py delete references to b85decode/b85decode 2023-03-07 09:57:27 -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.