1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-10 06:26:13 +02:00

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>
This commit is contained in:
Jeff King 2017-02-13 15:38:35 -05:00 committed by Junio C Hamano
parent 0202c411ed
commit 2aaf37b62c

View File

@ -441,14 +441,14 @@ set by Git if the remote helper has the 'option' capability.
Request the helper to perform a force update. Defaults to
'false'.
'option cloning {'true'|'false'}::
'option cloning' {'true'|'false'}::
Notify the helper this is a clone request (i.e. the current
repository is guaranteed empty).
'option update-shallow {'true'|'false'}::
'option update-shallow' {'true'|'false'}::
Allow to extend .git/shallow if the new refs require it.
'option pushcert {'true'|'false'}::
'option pushcert' {'true'|'false'}::
GPG sign pushes.
SEE ALSO