blob: d954bf6ba872e31c1197a96487fafd3ad8f73844 [file] [log] [blame]
Junio C Hamano2fbcd212008-05-14 22:26:071githooks(5)
2===========
3
4NAME
5----
Junio C Hamano076ffcc2013-02-06 05:13:216githooks - Hooks used by Git
Junio C Hamano2fbcd212008-05-14 22:26:077
8SYNOPSIS
9--------
10$GIT_DIR/hooks/*
11
12
13DESCRIPTION
14-----------
Junio C Hamano1a4e8412005-12-27 08:17:2315
16Hooks are little scripts you can place in `$GIT_DIR/hooks`
17directory to trigger action at certain points. When
Junio C Hamano1aa40d22010-01-21 17:46:4318'git init' is run, a handful of example hooks are copied into the
Junio C Hamano1a4e8412005-12-27 08:17:2319`hooks` directory of the new repository, but by default they are
Junio C Hamano6aff3992008-06-25 08:07:4420all disabled. To enable a hook, rename it by removing its `.sample`
21suffix.
Junio C Hamano1a4e8412005-12-27 08:17:2322
Junio C Hamano8a48fa22008-12-18 08:44:3023NOTE: It is also a requirement for a given hook to be executable.
24However - in a freshly initialized repository - the `.sample` files are
25executable by default.
26
Junio C Hamano1a4e8412005-12-27 08:17:2327This document describes the currently defined hooks.
28
Junio C Hamanoc28068f2009-09-08 00:55:2329HOOKS
30-----
31
Junio C Hamano1a4e8412005-12-27 08:17:2332applypatch-msg
Junio C Hamanoc28068f2009-09-08 00:55:2333~~~~~~~~~~~~~~
Junio C Hamano1a4e8412005-12-27 08:17:2334
Junio C Hamano1aa40d22010-01-21 17:46:4335This hook is invoked by 'git am' script. It takes a single
Junio C Hamano1a4e8412005-12-27 08:17:2336parameter, the name of the file that holds the proposed commit
Junio C Hamanod5784132006-09-20 21:29:2737log message. Exiting with non-zero status causes
Junio C Hamano1aa40d22010-01-21 17:46:4338'git am' to abort before applying the patch.
Junio C Hamano1a4e8412005-12-27 08:17:2339
40The hook is allowed to edit the message file in place, and can
41be used to normalize the message into some project standard
42format (if the project has one). It can also be used to refuse
43the commit after inspecting the message file.
44
Junio C Hamanod5784132006-09-20 21:29:2745The default 'applypatch-msg' hook, when enabled, runs the
46'commit-msg' hook, if the latter is enabled.
Junio C Hamano1a4e8412005-12-27 08:17:2347
48pre-applypatch
Junio C Hamanoc28068f2009-09-08 00:55:2349~~~~~~~~~~~~~~
Junio C Hamano1a4e8412005-12-27 08:17:2350
Junio C Hamano1aa40d22010-01-21 17:46:4351This hook is invoked by 'git am'. It takes no parameter, and is
Junio C Hamanoa31092a2008-05-04 06:41:2352invoked after the patch is applied, but before a commit is made.
53
54If it exits with non-zero status, then the working tree will not be
55committed after applying the patch.
Junio C Hamano1a4e8412005-12-27 08:17:2356
57It can be used to inspect the current working tree and refuse to
58make a commit if it does not pass certain test.
59
Junio C Hamanod5784132006-09-20 21:29:2760The default 'pre-applypatch' hook, when enabled, runs the
61'pre-commit' hook, if the latter is enabled.
Junio C Hamano1a4e8412005-12-27 08:17:2362
63post-applypatch
Junio C Hamanoc28068f2009-09-08 00:55:2364~~~~~~~~~~~~~~~
Junio C Hamano1a4e8412005-12-27 08:17:2365
Junio C Hamano1aa40d22010-01-21 17:46:4366This hook is invoked by 'git am'. It takes no parameter,
Junio C Hamano1a4e8412005-12-27 08:17:2367and is invoked after the patch is applied and a commit is made.
68
69This hook is meant primarily for notification, and cannot affect
Junio C Hamano1aa40d22010-01-21 17:46:4370the outcome of 'git am'.
Junio C Hamano1a4e8412005-12-27 08:17:2371
72pre-commit
Junio C Hamanoc28068f2009-09-08 00:55:2373~~~~~~~~~~
Junio C Hamano1a4e8412005-12-27 08:17:2374
Junio C Hamano1aa40d22010-01-21 17:46:4375This hook is invoked by 'git commit', and can be bypassed
Junio C Hamanob76a6862012-05-02 22:02:4676with `--no-verify` option. It takes no parameter, and is
Junio C Hamano1a4e8412005-12-27 08:17:2377invoked before obtaining the proposed commit log message and
78making a commit. Exiting with non-zero status from this script
Junio C Hamano1aa40d22010-01-21 17:46:4379causes the 'git commit' to abort.
Junio C Hamano1a4e8412005-12-27 08:17:2380
Junio C Hamanod5784132006-09-20 21:29:2781The default 'pre-commit' hook, when enabled, catches introduction
Junio C Hamano1a4e8412005-12-27 08:17:2382of lines with trailing whitespaces and aborts the commit when
Junio C Hamanod5784132006-09-20 21:29:2783such a line is found.
Junio C Hamano1a4e8412005-12-27 08:17:2384
Junio C Hamano1aa40d22010-01-21 17:46:4385All the 'git commit' hooks are invoked with the environment
Junio C Hamano26e590a2008-02-17 03:53:5186variable `GIT_EDITOR=:` if the command will not bring up an editor
87to modify the commit message.
88
89prepare-commit-msg
Junio C Hamanoc28068f2009-09-08 00:55:2390~~~~~~~~~~~~~~~~~~
Junio C Hamano26e590a2008-02-17 03:53:5191
Junio C Hamano1aa40d22010-01-21 17:46:4392This hook is invoked by 'git commit' right after preparing the
Junio C Hamano26e590a2008-02-17 03:53:5193default log message, and before the editor is started.
94
95It takes one to three parameters. The first is the name of the file
Junio C Hamanobd53dbf2009-01-18 18:26:3796that contains the commit log message. The second is the source of the commit
Junio C Hamanoa476efa2008-10-10 15:31:4297message, and can be: `message` (if a `-m` or `-F` option was
98given); `template` (if a `-t` option was given or the
Junio C Hamano26e590a2008-02-17 03:53:5199configuration option `commit.template` is set); `merge` (if the
100commit is a merge or a `.git/MERGE_MSG` file exists); `squash`
101(if a `.git/SQUASH_MSG` file exists); or `commit`, followed by
Junio C Hamanoe3f080d2013-04-22 02:27:13102a commit SHA-1 (if a `-c`, `-C` or `--amend` option was given).
Junio C Hamano26e590a2008-02-17 03:53:51103
Junio C Hamano1aa40d22010-01-21 17:46:43104If the exit status is non-zero, 'git commit' will abort.
Junio C Hamano26e590a2008-02-17 03:53:51105
106The purpose of the hook is to edit the message file in place, and
Junio C Hamanob76a6862012-05-02 22:02:46107it is not suppressed by the `--no-verify` option. A non-zero exit
Junio C Hamano26e590a2008-02-17 03:53:51108means a failure of the hook and aborts the commit. It should not
109be used as replacement for pre-commit hook.
110
Junio C Hamano076ffcc2013-02-06 05:13:21111The sample `prepare-commit-msg` hook that comes with Git comments
Junio C Hamano26e590a2008-02-17 03:53:51112out the `Conflicts:` part of a merge's commit message.
113
Junio C Hamano1a4e8412005-12-27 08:17:23114commit-msg
Junio C Hamanoc28068f2009-09-08 00:55:23115~~~~~~~~~~
Junio C Hamano1a4e8412005-12-27 08:17:23116
Junio C Hamano1aa40d22010-01-21 17:46:43117This hook is invoked by 'git commit', and can be bypassed
Junio C Hamanob76a6862012-05-02 22:02:46118with `--no-verify` option. It takes a single parameter, the
Junio C Hamano1a4e8412005-12-27 08:17:23119name of the file that holds the proposed commit log message.
Junio C Hamano1aa40d22010-01-21 17:46:43120Exiting with non-zero status causes the 'git commit' to
Junio C Hamano1a4e8412005-12-27 08:17:23121abort.
122
123The hook is allowed to edit the message file in place, and can
124be used to normalize the message into some project standard
125format (if the project has one). It can also be used to refuse
126the commit after inspecting the message file.
127
Junio C Hamanod5784132006-09-20 21:29:27128The default 'commit-msg' hook, when enabled, detects duplicate
129"Signed-off-by" lines, and aborts the commit if one is found.
Junio C Hamano1a4e8412005-12-27 08:17:23130
131post-commit
Junio C Hamanoc28068f2009-09-08 00:55:23132~~~~~~~~~~~
Junio C Hamano1a4e8412005-12-27 08:17:23133
Junio C Hamano1aa40d22010-01-21 17:46:43134This hook is invoked by 'git commit'. It takes no
Junio C Hamano1a4e8412005-12-27 08:17:23135parameter, and is invoked after a commit is made.
136
137This hook is meant primarily for notification, and cannot affect
Junio C Hamano1aa40d22010-01-21 17:46:43138the outcome of 'git commit'.
Junio C Hamano1a4e8412005-12-27 08:17:23139
Junio C Hamanoa476efa2008-10-10 15:31:42140pre-rebase
Junio C Hamanoc28068f2009-09-08 00:55:23141~~~~~~~~~~
Junio C Hamanoa476efa2008-10-10 15:31:42142
Junio C Hamano947ab822013-03-19 23:07:29143This hook is called by 'git rebase' and can be used to prevent a
144branch from getting rebased. The hook may be called with one or
145two parameters. The first parameter is the upstream from which
146the series was forked. The second parameter is the branch being
147rebased, and is not set when rebasing the current branch.
Junio C Hamanoa476efa2008-10-10 15:31:42148
Junio C Hamano1b50ce92007-10-03 12:05:53149post-checkout
Junio C Hamanoc28068f2009-09-08 00:55:23150~~~~~~~~~~~~~
Junio C Hamano1b50ce92007-10-03 12:05:53151
Junio C Hamano1aa40d22010-01-21 17:46:43152This hook is invoked when a 'git checkout' is run after having updated the
Junio C Hamano1b50ce92007-10-03 12:05:53153worktree. The hook is given three parameters: the ref of the previous HEAD,
154the ref of the new HEAD (which may or may not have changed), and a flag
155indicating whether the checkout was a branch checkout (changing branches,
156flag=1) or a file checkout (retrieving a file from the index, flag=0).
Junio C Hamano1aa40d22010-01-21 17:46:43157This hook cannot affect the outcome of 'git checkout'.
Junio C Hamano1b50ce92007-10-03 12:05:53158
Junio C Hamano1aa40d22010-01-21 17:46:43159It is also run after 'git clone', unless the --no-checkout (-n) option is
Junio C Hamano36a56722009-03-28 08:55:34160used. The first parameter given to the hook is the null-ref, the second the
161ref of the new HEAD and the flag is always 1.
162
Junio C Hamano1b50ce92007-10-03 12:05:53163This hook can be used to perform repository validity checks, auto-display
164differences from the previous HEAD if different, or set working dir metadata
165properties.
166
Junio C Hamano01d8f832007-09-24 07:37:30167post-merge
Junio C Hamanoc28068f2009-09-08 00:55:23168~~~~~~~~~~
Junio C Hamano01d8f832007-09-24 07:37:30169
Junio C Hamano1aa40d22010-01-21 17:46:43170This hook is invoked by 'git merge', which happens when a 'git pull'
Junio C Hamano01d8f832007-09-24 07:37:30171is done on a local repository. The hook takes a single parameter, a status
172flag specifying whether or not the merge being done was a squash merge.
Junio C Hamano1aa40d22010-01-21 17:46:43173This hook cannot affect the outcome of 'git merge' and is not executed,
Junio C Hamano47d68a52008-05-06 06:35:40174if the merge failed due to conflicts.
Junio C Hamano01d8f832007-09-24 07:37:30175
176This hook can be used in conjunction with a corresponding pre-commit hook to
177save and restore any form of metadata associated with the working tree
178(eg: permissions/ownership, ACLS, etc). See contrib/hooks/setgitperms.perl
179for an example of how to do this.
180
Junio C Hamano36d52292013-01-25 21:32:36181pre-push
182~~~~~~~~
183
184This hook is called by 'git push' and can be used to prevent a push from taking
185place. The hook is called with two parameters which provide the name and
186location of the destination remote, if a named remote is not being used both
187values will be the same.
188
189Information about what is to be pushed is provided on the hook's standard
190input with lines of the form:
191
192 <local ref> SP <local sha1> SP <remote ref> SP <remote sha1> LF
193
194For instance, if the command +git push origin master:foreign+ were run the
195hook would receive a line like the following:
196
197 refs/heads/master 67890 refs/heads/foreign 12345
198
Junio C Hamanoe3f080d2013-04-22 02:27:13199although the full, 40-character SHA-1s would be supplied. If the foreign ref
200does not yet exist the `<remote SHA-1>` will be 40 `0`. If a ref is to be
Junio C Hamano36d52292013-01-25 21:32:36201deleted, the `<local ref>` will be supplied as `(delete)` and the `<local
Junio C Hamanoe3f080d2013-04-22 02:27:13202SHA-1>` will be 40 `0`. If the local commit was specified by something other
203than a name which could be expanded (such as `HEAD~`, or a SHA-1) it will be
Junio C Hamano36d52292013-01-25 21:32:36204supplied as it was originally given.
205
206If this hook exits with a non-zero status, 'git push' will abort without
207pushing anything. Information about why the push is rejected may be sent
208to the user by writing to standard error.
209
Junio C Hamano8638c922007-05-12 20:50:08210[[pre-receive]]
211pre-receive
Junio C Hamanoc28068f2009-09-08 00:55:23212~~~~~~~~~~~
Junio C Hamano8638c922007-05-12 20:50:08213
Junio C Hamanoba4b9282008-07-06 05:20:31214This hook is invoked by 'git-receive-pack' on the remote repository,
Junio C Hamano1aa40d22010-01-21 17:46:43215which happens when a 'git push' is done on a local repository.
Junio C Hamano8638c922007-05-12 20:50:08216Just before starting to update refs on the remote repository, the
217pre-receive hook is invoked. Its exit status determines the success
218or failure of the update.
219
220This hook executes once for the receive operation. It takes no
221arguments, but for each ref to be updated it receives on standard
222input a line of the format:
223
224 <old-value> SP <new-value> SP <ref-name> LF
225
226where `<old-value>` is the old object name stored in the ref,
227`<new-value>` is the new object name to be stored in the ref and
228`<ref-name>` is the full name of the ref.
229When creating a new ref, `<old-value>` is 40 `0`.
230
231If the hook exits with non-zero status, none of the refs will be
232updated. If the hook exits with zero, updating of individual refs can
233still be prevented by the <<update,'update'>> hook.
234
Junio C Hamano323e52d2007-05-13 22:19:53235Both standard output and standard error output are forwarded to
Junio C Hamano1aa40d22010-01-21 17:46:43236'git send-pack' on the other end, so you can simply `echo` messages
Junio C Hamano323e52d2007-05-13 22:19:53237for the user.
Junio C Hamano8638c922007-05-12 20:50:08238
239[[update]]
Junio C Hamano1a4e8412005-12-27 08:17:23240update
Junio C Hamanoc28068f2009-09-08 00:55:23241~~~~~~
Junio C Hamano1a4e8412005-12-27 08:17:23242
Junio C Hamanoba4b9282008-07-06 05:20:31243This hook is invoked by 'git-receive-pack' on the remote repository,
Junio C Hamano1aa40d22010-01-21 17:46:43244which happens when a 'git push' is done on a local repository.
Junio C Hamano818f7d62006-03-26 01:49:30245Just before updating the ref on the remote repository, the update hook
Junio C Hamano33db4372006-06-07 19:51:45246is invoked. Its exit status determines the success or failure of
Junio C Hamano818f7d62006-03-26 01:49:30247the ref update.
Junio C Hamano1a4e8412005-12-27 08:17:23248
Junio C Hamano818f7d62006-03-26 01:49:30249The hook executes once for each ref to be updated, and takes
250three parameters:
Junio C Hamanod5784132006-09-20 21:29:27251
252 - the name of the ref being updated,
253 - the old object name stored in the ref,
Junio C Hamano826f5c42014-02-07 20:33:30254 - and the new object name to be stored in the ref.
Junio C Hamano818f7d62006-03-26 01:49:30255
256A zero exit from the update hook allows the ref to be updated.
Junio C Hamanoba4b9282008-07-06 05:20:31257Exiting with a non-zero status prevents 'git-receive-pack'
Junio C Hamano8638c922007-05-12 20:50:08258from updating that ref.
Junio C Hamano818f7d62006-03-26 01:49:30259
260This hook can be used to prevent 'forced' update on certain refs by
Junio C Hamano1a4e8412005-12-27 08:17:23261making sure that the object name is a commit object that is a
262descendant of the commit object named by the old object name.
Junio C Hamano3f680f32009-11-16 02:10:54263That is, to enforce a "fast-forward only" policy.
Junio C Hamano818f7d62006-03-26 01:49:30264
265It could also be used to log the old..new status. However, it
266does not know the entire set of branches, so it would end up
Junio C Hamano8638c922007-05-12 20:50:08267firing one e-mail per ref when used naively, though. The
268<<post-receive,'post-receive'>> hook is more suited to that.
Junio C Hamano818f7d62006-03-26 01:49:30269
Junio C Hamano1a4e8412005-12-27 08:17:23270Another use suggested on the mailing list is to use this hook to
271implement access control which is finer grained than the one
272based on filesystem group.
273
Junio C Hamano323e52d2007-05-13 22:19:53274Both standard output and standard error output are forwarded to
Junio C Hamano1aa40d22010-01-21 17:46:43275'git send-pack' on the other end, so you can simply `echo` messages
Junio C Hamano323e52d2007-05-13 22:19:53276for the user.
Junio C Hamano1a4e8412005-12-27 08:17:23277
Junio C Hamano8638c922007-05-12 20:50:08278The default 'update' hook, when enabled--and with
Junio C Hamanod6fff402009-09-14 09:40:50279`hooks.allowunannotated` config option unset or set to false--prevents
Junio C Hamano8638c922007-05-12 20:50:08280unannotated tags to be pushed.
Junio C Hamano818f7d62006-03-26 01:49:30281
Junio C Hamano8638c922007-05-12 20:50:08282[[post-receive]]
283post-receive
Junio C Hamanoc28068f2009-09-08 00:55:23284~~~~~~~~~~~~
Junio C Hamano8638c922007-05-12 20:50:08285
Junio C Hamanoba4b9282008-07-06 05:20:31286This hook is invoked by 'git-receive-pack' on the remote repository,
Junio C Hamano1aa40d22010-01-21 17:46:43287which happens when a 'git push' is done on a local repository.
Junio C Hamano8638c922007-05-12 20:50:08288It executes on the remote repository once after all the refs have
289been updated.
290
291This hook executes once for the receive operation. It takes no
Junio C Hamano323e52d2007-05-13 22:19:53292arguments, but gets the same information as the
293<<pre-receive,'pre-receive'>>
Junio C Hamano8638c922007-05-12 20:50:08294hook does on its standard input.
295
Junio C Hamanoba4b9282008-07-06 05:20:31296This hook does not affect the outcome of 'git-receive-pack', as it
Junio C Hamano8638c922007-05-12 20:50:08297is called after the real work is done.
298
Junio C Hamanoa6387422007-08-25 03:54:27299This supersedes the <<post-update,'post-update'>> hook in that it gets
Junio C Hamano323e52d2007-05-13 22:19:53300both old and new values of all the refs in addition to their
301names.
Junio C Hamano8638c922007-05-12 20:50:08302
Junio C Hamano323e52d2007-05-13 22:19:53303Both standard output and standard error output are forwarded to
Junio C Hamano1aa40d22010-01-21 17:46:43304'git send-pack' on the other end, so you can simply `echo` messages
Junio C Hamano323e52d2007-05-13 22:19:53305for the user.
Junio C Hamano8638c922007-05-12 20:50:08306
307The default 'post-receive' hook is empty, but there is
308a sample script `post-receive-email` provided in the `contrib/hooks`
Junio C Hamano076ffcc2013-02-06 05:13:21309directory in Git distribution, which implements sending commit
Junio C Hamano8638c922007-05-12 20:50:08310emails.
311
312[[post-update]]
Junio C Hamano1a4e8412005-12-27 08:17:23313post-update
Junio C Hamanoc28068f2009-09-08 00:55:23314~~~~~~~~~~~
Junio C Hamano1a4e8412005-12-27 08:17:23315
Junio C Hamanoba4b9282008-07-06 05:20:31316This hook is invoked by 'git-receive-pack' on the remote repository,
Junio C Hamano1aa40d22010-01-21 17:46:43317which happens when a 'git push' is done on a local repository.
Junio C Hamano818f7d62006-03-26 01:49:30318It executes on the remote repository once after all the refs have
319been updated.
320
321It takes a variable number of parameters, each of which is the
322name of ref that was actually updated.
Junio C Hamano1a4e8412005-12-27 08:17:23323
324This hook is meant primarily for notification, and cannot affect
Junio C Hamanoba4b9282008-07-06 05:20:31325the outcome of 'git-receive-pack'.
Junio C Hamano1a4e8412005-12-27 08:17:23326
Junio C Hamanod5784132006-09-20 21:29:27327The 'post-update' hook can tell what are the heads that were pushed,
Junio C Hamano818f7d62006-03-26 01:49:30328but it does not know what their original and updated values are,
Junio C Hamano323e52d2007-05-13 22:19:53329so it is a poor place to do log old..new. The
330<<post-receive,'post-receive'>> hook does get both original and
331updated values of the refs. You might consider it instead if you need
332them.
Junio C Hamano8638c922007-05-12 20:50:08333
Junio C Hamanod5784132006-09-20 21:29:27334When enabled, the default 'post-update' hook runs
Junio C Hamano1aa40d22010-01-21 17:46:43335'git update-server-info' to keep the information used by dumb
Junio C Hamanod5784132006-09-20 21:29:27336transports (e.g., HTTP) up-to-date. If you are publishing
Junio C Hamano076ffcc2013-02-06 05:13:21337a Git repository that is accessible via HTTP, you should
Junio C Hamano818f7d62006-03-26 01:49:30338probably enable this hook.
Junio C Hamano1a4e8412005-12-27 08:17:23339
Junio C Hamano8638c922007-05-12 20:50:08340Both standard output and standard error output are forwarded to
Junio C Hamano1aa40d22010-01-21 17:46:43341'git send-pack' on the other end, so you can simply `echo` messages
Junio C Hamano323e52d2007-05-13 22:19:53342for the user.
Junio C Hamanoe3ddb5b2008-04-21 00:48:07343
344pre-auto-gc
Junio C Hamanoc28068f2009-09-08 00:55:23345~~~~~~~~~~~
Junio C Hamanoe3ddb5b2008-04-21 00:48:07346
Junio C Hamano1aa40d22010-01-21 17:46:43347This hook is invoked by 'git gc --auto'. It takes no parameter, and
348exiting with non-zero status from this script causes the 'git gc --auto'
Junio C Hamanoe3ddb5b2008-04-21 00:48:07349to abort.
Junio C Hamano2fbcd212008-05-14 22:26:07350
Junio C Hamano31667362010-03-25 00:38:53351post-rewrite
352~~~~~~~~~~~~
353
354This hook is invoked by commands that rewrite commits (`git commit
355--amend`, 'git-rebase'; currently 'git-filter-branch' does 'not' call
356it!). Its first argument denotes the command it was invoked by:
357currently one of `amend` or `rebase`. Further command-dependent
358arguments may be passed in the future.
359
360The hook receives a list of the rewritten commits on stdin, in the
361format
362
363 <old-sha1> SP <new-sha1> [ SP <extra-info> ] LF
364
365The 'extra-info' is again command-dependent. If it is empty, the
366preceding SP is also omitted. Currently, no commands pass any
367'extra-info'.
368
369The hook always runs after the automatic note copying (see
Junio C Hamano68061622013-03-01 22:13:37370"notes.rewrite.<command>" in linkgit:git-config.txt[1]) has happened, and
Junio C Hamano31667362010-03-25 00:38:53371thus has access to these notes.
372
373The following command-specific comments apply:
374
375rebase::
376For the 'squash' and 'fixup' operation, all commits that were
377squashed are listed as being rewritten to the squashed commit.
378This means that there will be several lines sharing the same
379'new-sha1'.
380+
381The commits are guaranteed to be listed in the order that they were
382processed by rebase.
383
Junio C Hamano31667362010-03-25 00:38:53384
Junio C Hamano2fbcd212008-05-14 22:26:07385GIT
386---
Junio C Hamanof7c042d2008-06-06 22:50:53387Part of the linkgit:git[1] suite