forked from git/git
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tone down the warning on SHA-256 repositories being an experimental curiosity. We do not have support for them to interoperate with traditional SHA-1 repositories, but at this point, we do not plan to make breaking changes to SHA-256 repositories and there is no longer need for such a strongly phrased warning. * am/doc-sha256: doc: sha256 is no longer experimental
- Loading branch information
Showing
2 changed files
with
11 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
THIS OPTION IS EXPERIMENTAL! SHA-256 support is experimental and still | ||
in an early stage. A SHA-256 repository will in general not be able to | ||
share work with "regular" SHA-1 repositories. It should be assumed | ||
that, e.g., Git internal file formats in relation to SHA-256 | ||
repositories may change in backwards-incompatible ways. Only use | ||
`--object-format=sha256` for testing purposes. | ||
Note: At present, there is no interoperability between SHA-256 | ||
repositories and SHA-1 repositories. | ||
|
||
Historically, we warned that SHA-256 repositories may later need | ||
backward incompatible changes when we introduce such interoperability | ||
features. Today, we only expect compatible changes. Furthermore, if such | ||
changes prove to be necessary, it can be expected that SHA-256 repositories | ||
created with today's Git will be usable by future versions of Git | ||
without data loss. |