diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-02-15 12:54:19 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-02-15 12:54:19 -0800 |
commit | ca3c2b85d1b081380f3768fa08ca84e7dd7ffa89 (patch) | |
tree | 288b680cea43912fe62dc1910ab76a50d43182f0 /Documentation | |
parent | 3f4ccb5a579740382fa7685e6d1a00d157b44387 (diff) | |
parent | 438fc68462d5839ef6ca231cdcb411105eaf0ba2 (diff) | |
download | git-ca3c2b85d1b081380f3768fa08ca84e7dd7ffa89.tar.gz git-ca3c2b85d1b081380f3768fa08ca84e7dd7ffa89.tar.xz |
Merge branch 'sb/push-options-via-transport'
The push-options given via the "--push-options" option were not
passed through to external remote helpers such as "smart HTTP" that
are invoked via the transport helper.
* sb/push-options-via-transport:
push options: pass push options to the transport helper
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/gitremote-helpers.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/gitremote-helpers.txt b/Documentation/gitremote-helpers.txt index 9e8681f9e..23474b1ea 100644 --- a/Documentation/gitremote-helpers.txt +++ b/Documentation/gitremote-helpers.txt @@ -462,6 +462,10 @@ set by Git if the remote helper has the 'option' capability. 'option pushcert {'true'|'false'}:: GPG sign pushes. +'option push-option <string>:: + Transmit <string> as a push option. As the a push option + must not contain LF or NUL characters, the string is not encoded. + SEE ALSO -------- linkgit:git-remote[1] |