mirror of
https://github.com/facebook/sapling.git
synced 2025-01-06 04:43:19 +03:00
A Scalable, User-Friendly Source Control System.
7eb73196c4
Summary: `fs::canonicalize` has unwanted side effect - resolving symlinks. Use `util::path::absolute` instead. This resolves a side effect where Note on Linux, `chdir` resolves symlinks and `getcwd` (aka. `std::env::current_dir`) will return the resolved path. On Windows `std::env::current_dir` does not return the resolved path, at least for the mapped drive created via the `subst` command. Differential Revision: D16952484 fbshipit-source-id: 6969a1844020ff6b82de46416d8950ec40394159 |
||
---|---|---|
contrib | ||
distutils_rust | ||
doc | ||
edenscm | ||
edenscmnative | ||
exec | ||
i18n | ||
lib | ||
newdoc | ||
slides | ||
tests | ||
.editorconfig | ||
.flake8 | ||
.gitignore | ||
.hgsigs | ||
.jshintrc | ||
CONTRIBUTING | ||
CONTRIBUTORS | ||
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.