mirror of
https://github.com/facebook/sapling.git
synced 2025-01-06 04:43:19 +03:00
A Scalable, User-Friendly Source Control System.
3d5cc68c87
Summary: We've seen problems where we send requests to the server for a manifest node and claim that we have that same node as the base node. This results in the server sending no data back. This is obviously a bug in the client, since if we're trying to fetch the node it means we don't have it and shouldn't use it as a base. Our current best guess is that the node is in the index but the actual data is corrupt, so getmissing() claims it exists, but reads actually fail. Until we figure out the root cause, let's prevent findrecenttree from returning the node as a base to itself. Reviewed By: sfilipco Differential Revision: D16996425 fbshipit-source-id: 04b0cfbe1c432749f2aeb63f98c7b59ab50facc0 |
||
---|---|---|
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.