diff options
author | Junio C Hamano <junkio@cox.net> | 2005-09-02 21:19:26 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-09-02 22:38:30 -0700 |
commit | 6d35cc76909512d386b503a3feb1b40c153c3195 (patch) | |
tree | c53870ba1f43150ac5d9947ad1b067aa501f66ae /Documentation/git-commit-script.txt | |
parent | Mention post-update when we first talk about publishing a repository. (diff) | |
download | tgif-6d35cc76909512d386b503a3feb1b40c153c3195.tar.xz |
Document hooks.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-commit-script.txt')
-rw-r--r-- | Documentation/git-commit-script.txt | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/Documentation/git-commit-script.txt b/Documentation/git-commit-script.txt index cf6b5c3da2..faa1870e34 100644 --- a/Documentation/git-commit-script.txt +++ b/Documentation/git-commit-script.txt @@ -8,7 +8,7 @@ git-commit-script - Record your changes SYNOPSIS -------- -'git commit' [-a] [-s] [-v] [(-c | -C) <commit> | -F <file> | -m <msg>] <file>... +'git commit' [-a] [-s] [-v] [(-c | -C) <commit> | -F <file> | -m <msg>] [-e] <file>... DESCRIPTION ----------- @@ -17,6 +17,10 @@ Updates the index file for given paths, or all modified files if VISUAL and EDITOR environment variables to edit the commit log message. +This command can run `commit-msg`, `pre-commit`, and +`post-commit` hooks. See link:hooks.html[hooks] for more +information. + OPTIONS ------- -a:: @@ -47,8 +51,14 @@ OPTIONS has a SP character immediately followed by a TAB character. +-e:: + The message taken from file with `-F`, command line with + `-m`, and from file with `-C` are usually used as the + commit log message unmodified. This option lets you + further edit the message taken from these sources. + <file>...:: - Update specified paths in the index file. + Update specified paths in the index file before committing. Author |