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
This commit is contained in:
Michael Bolin 2022-07-20 09:19:09 -07:00 committed by Facebook GitHub Bot
parent 5750bb2985
commit ec4261bb8b
2 changed files with 23 additions and 20 deletions

23
eden/scm/README.md Normal file
View File

@ -0,0 +1,23 @@
# 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.

View File

@ -1,20 +0,0 @@
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.