sapling/eden/scm/README.md
Michael Bolin ec4261bb8b migrate README.rst to README.md
Summary:
Ran `pandoc README.rst -f rst -t markdown -o README.md`

Though I had to clean up the code blocks manually to make them fenced.

Reviewed By: jordanwebster

Differential Revision: D37986559

fbshipit-source-id: 33518e9fc14d5b28c406627235faa61b82ca7cdb
2022-07-20 09:19:09 -07:00

24 lines
548 B
Markdown

# 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.