summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-04-03 17:56:18 (GMT)
committerJunio C Hamano <gitster@pobox.com>2024-04-03 17:56:18 (GMT)
commite139bb100691d7e60688ad536ee9966d144388f0 (patch)
tree611c1bdf0ae98248357853adac05a10a5d9b34d4 /Documentation
parentc2cbfbd2e28cbe27c194d62183b42f27a6a5bb87 (diff)
parentb5b7b17b2efafeaf421d284ddd4eca55272bc47d (diff)
downloadgit-e139bb100691d7e60688ad536ee9966d144388f0.zip
git-e139bb100691d7e60688ad536ee9966d144388f0.tar.gz
git-e139bb100691d7e60688ad536ee9966d144388f0.tar.bz2
Merge branch 'jk/remote-helper-object-format-option-fix'
The implementation and documentation of "object-format" option exchange between the Git itself and its remote helpers did not quite match, which has been corrected. * jk/remote-helper-object-format-option-fix: transport-helper: send "true" value for object-format option transport-helper: drop "object-format <algo>" option transport-helper: use write helpers more consistently
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/gitremote-helpers.txt7
1 files changed, 2 insertions, 5 deletions
diff --git a/Documentation/gitremote-helpers.txt b/Documentation/gitremote-helpers.txt
index fcb633e..d0be008 100644
--- a/Documentation/gitremote-helpers.txt
+++ b/Documentation/gitremote-helpers.txt
@@ -542,13 +542,10 @@ set by Git if the remote helper has the 'option' capability.
transaction. If successful, all refs will be updated, or none will. If the
remote side does not support this capability, the push will fail.
-'option object-format' {'true'|algorithm}::
- If 'true', indicate that the caller wants hash algorithm information
+'option object-format true'::
+ Indicate that the caller wants hash algorithm information
to be passed back from the remote. This mode is used when fetching
refs.
-+
-If set to an algorithm, indicate that the caller wants to interact with
-the remote side using that algorithm.
SEE ALSO
--------