diff options
author | Jonathan Tan <jonathantanmy@google.com> | 2018-01-25 10:53:24 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-01-25 11:24:32 -0800 |
commit | addad10594583092ad92a4b82c40040b913bb8ee (patch) | |
tree | 7751d1c911e4c213e29aab5d86855779ffa394bf /sub-process.h | |
parent | 5be1f00a9a701532232f57958efab4be8c959a29 (diff) | |
download | git-addad10594583092ad92a4b82c40040b913bb8ee.tar.gz |
Docs: split out long-running subprocess handshakejt/long-running-process-doc
Separating out the implementation of the handshake when starting a
long-running subprocess (for example, as is done for a clean/smudge
filter) was done in commit fa64a2fdbeed ("sub-process: refactor
handshake to common function", 2017-07-26), but its documentation still
resides in gitattributes. Split out the documentation as well.
Signed-off-by: Jonathan Tan <jonathantanmy@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sub-process.h')
-rw-r--r-- | sub-process.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sub-process.h b/sub-process.h index 49701998c9..71b18ad5af 100644 --- a/sub-process.h +++ b/sub-process.h @@ -73,8 +73,8 @@ static inline struct child_process *subprocess_get_child_process( } /* - * Perform the version and capability negotiation as described in the "Long - * Running Filter Process" section of the gitattributes documentation using the + * Perform the version and capability negotiation as described in the + * "Handshake" section of long-running-process-protocol.txt using the * given requested versions and capabilities. The "versions" and "capabilities" * parameters are arrays terminated by a 0 or blank struct. * |