summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ae98a00)
raw | patch | inline | side by side (parent: ae98a00)
author | Stephan Beyer <s-beyer@gmx.net> | |
Fri, 16 Jan 2009 19:10:00 +0000 (20:10 +0100) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sun, 18 Jan 2009 01:16:34 +0000 (17:16 -0800) |
Signed-off-by: Stephan Beyer <s-beyer@gmx.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/technical/api-run-command.txt | patch | blob | history |
diff --git a/Documentation/technical/api-run-command.txt b/Documentation/technical/api-run-command.txt
index 82e9e831b6a97dfaa62c02d30447415ef65e4fa3..13e7b6361b752ddeebfa2a3e9bd4ad2e4ff495af 100644 (file)
Wait for the completion of an asynchronous function that was
started with start_async().
+`run_hook`::
+
+ Run a hook.
+ The first argument is a pathname to an index file, or NULL
+ if the hook uses the default index file or no index is needed.
+ The second argument is the name of the hook.
+ The further arguments (up to 9) correspond to the hook arguments.
+ The last argument has to be NULL to terminate the arguments list.
+ If the hook does not exist or is not executable, the return
+ value will be zero.
+ If it is executable, the hook will be executed and the exit
+ status of the hook is returned.
+ On execution, .stdout_to_stderr and .no_stdin will be set.
+ (See below.)
+
Data structures
---------------