diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-06-05 09:03:15 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-06-05 09:03:15 +0900 |
commit | 7dab7c5b59d2b3e45ecda8cd47931db9dfc96ae2 (patch) | |
tree | 82f99132c71e2d06489d8817c8d727c3318b6c64 /Documentation/config.txt | |
parent | Merge branch 'jk/unbreak-am-h' into maint (diff) | |
parent | docs/config: mention protocol implications of url.insteadOf (diff) | |
download | tgif-7dab7c5b59d2b3e45ecda8cd47931db9dfc96ae2.tar.xz |
Merge branch 'jk/url-insteadof-config' into maint
The interaction of "url.*.insteadOf" and custom URL scheme's
whitelisting is now documented better.
* jk/url-insteadof-config:
docs/config: mention protocol implications of url.insteadOf
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r-- | Documentation/config.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index 65093ac22c..67f8c8fe51 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -3222,6 +3222,13 @@ url.<base>.insteadOf:: the best alternative for the particular user, even for a never-before-seen repository on the site. When more than one insteadOf strings match a given URL, the longest match is used. ++ +Note that any protocol restrictions will be applied to the rewritten +URL. If the rewrite changes the URL to use a custom protocol or remote +helper, you may need to adjust the `protocol.*.allow` config to permit +the request. In particular, protocols you expect to use for submodules +must be set to `always` rather than the default of `user`. See the +description of `protocol.allow` above. url.<base>.pushInsteadOf:: Any URL that starts with this value will not be pushed to; |