diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-12-10 16:20:59 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-12-10 16:20:59 -0800 |
commit | 4cb51a65a478ff005630d8806d01cd76a8889faf (patch) | |
tree | cbf6a55e2d516ef719ccbead2ec030ce13386f42 /Documentation/githooks.txt | |
parent | 80d93611c55fec171e0d9aba98db079952f9d7aa (diff) | |
parent | 9861b644e045b5ee0e16dea65b44419205090960 (diff) | |
download | git-4cb51a65a478ff005630d8806d01cd76a8889faf.tar.gz |
Sync with 1.6.5.6
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/githooks.txt')
-rw-r--r-- | Documentation/githooks.txt | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/Documentation/githooks.txt b/Documentation/githooks.txt index 4cc3d1387f..29eeae77ca 100644 --- a/Documentation/githooks.txt +++ b/Documentation/githooks.txt @@ -310,35 +310,6 @@ Both standard output and standard error output are forwarded to 'git-send-pack' on the other end, so you can simply `echo` messages for the user. -post-upload-pack ----------------- - -After upload-pack successfully finishes its operation, this hook is called -for logging purposes. - -The hook is passed various pieces of information, one per line, from its -standard input. Currently the following items can be fed to the hook, but -more types of information may be added in the future: - -want SHA-1:: - 40-byte hexadecimal object name the client asked to include in the - resulting pack. Can occur one or more times in the input. - -have SHA-1:: - 40-byte hexadecimal object name the client asked to exclude from - the resulting pack, claiming to have them already. Can occur zero - or more times in the input. - -time float:: - Number of seconds spent for creating the packfile. - -size decimal:: - Size of the resulting packfile in bytes. - -kind string: - Either "clone" (when the client did not give us any "have", and asked - for all our refs with "want"), or "fetch" (otherwise). - pre-auto-gc ~~~~~~~~~~~ |