mirror of
https://github.com/facebook/sapling.git
synced 2025-01-05 03:35:10 +03:00
A Scalable, User-Friendly Source Control System.
e33d12fcb7
Summary: In a future change we want `heads()` to include working parents and bookmarks unconditionally. That version of `heads()` needs to be used everywhere, including legacy exchange logic using branchmap. Since `changelog` does not have access to working copy parents or bookmarks, let's implement the `heads` and `headrevs` APIs on the `repo` object instead. The next diff will migrate users of `changelog.headrevs` to `repo.headrevs`. Reviewed By: markbt Differential Revision: D18366734 fbshipit-source-id: 8791aaa57efeb1c6d19d6a4502376aeb26832772 |
||
---|---|---|
CMake | ||
contrib | ||
distutils_rust | ||
doc | ||
edenscm | ||
edenscmnative | ||
exec | ||
i18n | ||
lib | ||
newdoc | ||
slides | ||
tests | ||
.editorconfig | ||
.flake8 | ||
.gitignore | ||
.hgsigs | ||
.jshintrc | ||
CMakeLists.txt | ||
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.