diff options
author | Eric Wong <normalperson@yhbt.net> | 2016-02-03 04:09:14 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-02-12 11:34:14 -0800 |
commit | c915f11eb4922e154e29cf62d3b549d65c06a170 (patch) | |
tree | c318d28aff355a3a42a6b7accc3fa0e71588584d /Documentation | |
parent | pass transport verbosity down to git_connect (diff) | |
download | tgif-c915f11eb4922e154e29cf62d3b549d65c06a170.tar.xz |
connect & http: support -4 and -6 switches for remote operations
Sometimes it is necessary to force IPv4-only or IPv6-only operation
on networks where name lookups may return a non-routable address and
stall remote operations.
The ssh(1) command has an equivalent switches which we may pass when
we run them. There may be old ssh(1) implementations out there
which do not support these switches; they should report the
appropriate error in that case.
rsync support is untouched for now since it is deprecated and
scheduled to be removed.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Reviewed-by: Torsten Bögershausen <tboegi@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/fetch-options.txt | 8 | ||||
-rw-r--r-- | Documentation/git-push.txt | 7 |
2 files changed, 15 insertions, 0 deletions
diff --git a/Documentation/fetch-options.txt b/Documentation/fetch-options.txt index 45583d8454..b94d2c5037 100644 --- a/Documentation/fetch-options.txt +++ b/Documentation/fetch-options.txt @@ -150,3 +150,11 @@ endif::git-pull[] by default when it is attached to a terminal, unless -q is specified. This flag forces progress status even if the standard error stream is not directed to a terminal. + +-4:: +--ipv4:: + Use IPv4 addresses only, ignoring IPv6 addresses. + +-6:: +--ipv6:: + Use IPv6 addresses only, ignoring IPv4 addresses. diff --git a/Documentation/git-push.txt b/Documentation/git-push.txt index 4c775bcec4..a284d72401 100644 --- a/Documentation/git-push.txt +++ b/Documentation/git-push.txt @@ -277,6 +277,13 @@ origin +master` to force a push to the `master` branch). See the default is --verify, giving the hook a chance to prevent the push. With --no-verify, the hook is bypassed completely. +-4:: +--ipv4:: + Use IPv4 addresses only, ignoring IPv6 addresses. + +-6:: +--ipv6:: + Use IPv6 addresses only, ignoring IPv4 addresses. include::urls-remotes.txt[] |