]> git.ipfire.org Git - thirdparty/git.git/commitdiff
config doc: protocol.version is not experimental
authorJonathan Nieder <jrnieder@gmail.com>
Tue, 24 Dec 2019 01:00:00 +0000 (17:00 -0800)
committerJunio C Hamano <gitster@pobox.com>
Wed, 15 Jan 2020 22:03:55 +0000 (14:03 -0800)
Git's protocol version 2 has been working well in production for over
a year.  Simplify documentation by no longer referring to it as
experimental.

Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/config/protocol.txt

index bfccc074913eda410ce5a5e9257889097141317a..0b40141613e3d3dbc50f727c534229d5ee1da3cc 100644 (file)
@@ -45,11 +45,10 @@ The protocol names currently used by git are:
 --
 
 protocol.version::
-       Experimental. If set, clients will attempt to communicate with a
-       server using the specified protocol version.  If unset, no
-       attempt will be made by the client to communicate using a
-       particular protocol version, this results in protocol version 0
-       being used.
+       If set, clients will attempt to communicate with a server
+       using the specified protocol version.  If the server does
+       not support it, communication falls back to version 0.
+       If unset, the default is `0`.
        Supported versions:
 +
 --