@@ -48,17 +48,19 @@ Documentation for older releases are available here:
4848* release notes for
4949 link:RelNotes/2.6.0.txt[2.6].
5050
51- * link:v2.5.3 /git.html[documentation for release 2.5.3 ]
51+ * link:v2.5.4 /git.html[documentation for release 2.5.4 ]
5252
5353* release notes for
54+ link:RelNotes/2.5.4.txt[2.5.4],
5455 link:RelNotes/2.5.3.txt[2.5.3],
5556 link:RelNotes/2.5.2.txt[2.5.2],
5657 link:RelNotes/2.5.1.txt[2.5.1],
5758 link:RelNotes/2.5.0.txt[2.5].
5859
59- * link:v2.4.9 /git.html[documentation for release 2.4.9 ]
60+ * link:v2.4.10 /git.html[documentation for release 2.4.10 ]
6061
6162* release notes for
63+ link:RelNotes/2.4.10.txt[2.4.10],
6264 link:RelNotes/2.4.9.txt[2.4.9],
6365 link:RelNotes/2.4.8.txt[2.4.8],
6466 link:RelNotes/2.4.7.txt[2.4.7],
@@ -70,9 +72,10 @@ Documentation for older releases are available here:
7072 link:RelNotes/2.4.1.txt[2.4.1],
7173 link:RelNotes/2.4.0.txt[2.4].
7274
73- * link:v2.3.9 /git.html[documentation for release 2.3.9 ]
75+ * link:v2.3.10 /git.html[documentation for release 2.3.10 ]
7476
7577* release notes for
78+ link:RelNotes/2.3.10.txt[2.3.10],
7679 link:RelNotes/2.3.9.txt[2.3.9],
7780 link:RelNotes/2.3.8.txt[2.3.8],
7881 link:RelNotes/2.3.7.txt[2.3.7],
@@ -1092,6 +1095,33 @@ GIT_ICASE_PATHSPECS::
10921095 an operation has touched every ref (e.g., because you are
10931096 cloning a repository to make a backup).
10941097
1098+ `GIT_ALLOW_PROTOCOL`::
1099+ If set, provide a colon-separated list of protocols which are
1100+ allowed to be used with fetch/push/clone. This is useful to
1101+ restrict recursive submodule initialization from an untrusted
1102+ repository. Any protocol not mentioned will be disallowed (i.e.,
1103+ this is a whitelist, not a blacklist). If the variable is not
1104+ set at all, all protocols are enabled. The protocol names
1105+ currently used by git are:
1106+
1107+ - `file`: any local file-based path (including `file://` URLs,
1108+ or local paths)
1109+
1110+ - `git`: the anonymous git protocol over a direct TCP
1111+ connection (or proxy, if configured)
1112+
1113+ - `ssh`: git over ssh (including `host:path` syntax,
1114+ `git+ssh://`, etc).
1115+
1116+ - `rsync`: git over rsync
1117+
1118+ - `http`: git over http, both "smart http" and "dumb http".
1119+ Note that this does _not_ include `https`; if you want both,
1120+ you should specify both as `http:https`.
1121+
1122+ - any external helpers are named by their protocol (e.g., use
1123+ `hg` to allow the `git-remote-hg` helper)
1124+
10951125
10961126Discussion[[Discussion]]
10971127------------------------
0 commit comments