summaryrefslogtreecommitdiff
path: root/Documentation/config
diff options
context:
space:
mode:
authorLibravatar Jonathan Tan <jonathantanmy@google.com>2021-05-04 14:16:02 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2021-05-05 10:41:29 +0900
commit477673d6f39b4829baa98ad88d6b65b35b79fd0f (patch)
tree78f7ac9dc9b5607b2d18fbb1704e7448280e7bf2 /Documentation/config
parentfetch: teach independent negotiation (no packfile) (diff)
downloadtgif-477673d6f39b4829baa98ad88d6b65b35b79fd0f.tar.xz
send-pack: support push negotiation
Teach Git the push.negotiate config variable. Signed-off-by: Jonathan Tan <jonathantanmy@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/config')
-rw-r--r--Documentation/config/push.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/Documentation/config/push.txt b/Documentation/config/push.txt
index 21b256e0a4..f2667b2689 100644
--- a/Documentation/config/push.txt
+++ b/Documentation/config/push.txt
@@ -120,3 +120,10 @@ push.useForceIfIncludes::
`--force-if-includes` as an option to linkgit:git-push[1]
in the command line. Adding `--no-force-if-includes` at the
time of push overrides this configuration setting.
+
+push.negotiate::
+ If set to "true", attempt to reduce the size of the packfile
+ sent by rounds of negotiation in which the client and the
+ server attempt to find commits in common. If "false", Git will
+ rely solely on the server's ref advertisement to find commits
+ in common.