docs/gitremote-helpers: fix unbalanced quotes
Each of these options is missing the closing single-quote on the option name. This understandably confuses asciidoc, which ends up rendering a stray quote, like: option cloning {'true|false} Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Jeff King committed
Feb 13, 2017 at 15:38 UTC
2aaf37b62c526f8c4615796e04b1fd4271aa3f29
1 file changed
+3
-3
Documentation/gitremote-helpers.txt
+3
-3
@@ -441,14 +441,14 @@ set by Git if the remote helper has the 'option' capability.
441
Request the helper to perform a force update. Defaults to
442
'false'.
443
444
-'option cloning {'true'|'false'}::
444
+'option cloning' {'true'|'false'}::
445
Notify the helper this is a clone request (i.e. the current
446
repository is guaranteed empty).
447
448
-'option update-shallow {'true'|'false'}::
448
+'option update-shallow' {'true'|'false'}::
449
Allow to extend .git/shallow if the new refs require it.
450
451
-'option pushcert {'true'|'false'}::
451
+'option pushcert' {'true'|'false'}::
452
GPG sign pushes.
453
454
SEE ALSO