mirror of
https://github.com/facebook/sapling.git
synced 2025-01-07 22:21:40 +03:00
A Scalable, User-Friendly Source Control System.
43bc04968a
Summary: Commit cloud and infinitepush currently only back up draft commits, omitting secret ones. However, commit cloud sync with visibility enabled will try to sync all visible commits, including the secret ones. This means users with secret commits won't be able to sync them to their other machines as they won't have been backed up. We eventually want to get rid of the secret phase, which means all non-public commits should be synced. Update commit cloud to backup and sync all non-public commits, including secret ones. Currently secret commits become draft when they are received by the other machine. Since we're planning to get rid of the secret phase, this should be fine. Reviewed By: mitrandir77 Differential Revision: D16830832 fbshipit-source-id: 2ce4447ffa750a2edcb194cdf92321c1393ff805 |
||
---|---|---|
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.