Documentation / git-commit.txton commit mailsplit: -d<prec> (e11fc02)
   1git-commit(1)
   2=============
   3v0.99.4, Aug 2005
   4
   5NAME
   6----
   7git-commit - Record your changes
   8
   9SYNOPSIS
  10--------
  11'git commit' [-a] [-s] [-v] [(-c | -C) <commit> | -F <file> | -m <msg>] [-e] <file>...
  12
  13DESCRIPTION
  14-----------
  15Updates the index file for given paths, or all modified files if
  16'-a' is specified, and makes a commit object.  The command
  17VISUAL and EDITOR environment variables to edit the commit log
  18message.
  19
  20This command can run `commit-msg`, `pre-commit`, and
  21`post-commit` hooks.  See link:hooks.html[hooks] for more
  22information.
  23
  24OPTIONS
  25-------
  26-a::
  27        Update all paths in the index file.
  28
  29-c or -C <commit>::
  30        Take existing commit object, and reuse the log message
  31        and the authorship information (including the timestamp)
  32        when creating the commit.  With '-C', the editor is not
  33        invoked; with '-c' the user can further edit the commit
  34        message.
  35
  36-F <file>::
  37        Take the commit message from the given file.  Use '-' to
  38        read the message from the standard input.
  39
  40-m <msg>::
  41        Use the given <msg> as the commit message.
  42
  43-s::
  44        Add Signed-off-by line at the end of the commit message.
  45
  46-v::
  47        Look for suspicious lines the commit introduces, and
  48        abort committing if there is one.  The definition of
  49        'suspicious lines' is currently the lines that has
  50        trailing whitespaces, and the lines whose indentation
  51        has a SP character immediately followed by a TAB
  52        character.
  53
  54-e::
  55        The message taken from file with `-F`, command line with
  56        `-m`, and from file with `-C` are usually used as the
  57        commit log message unmodified.  This option lets you
  58        further edit the message taken from these sources.
  59
  60<file>...::
  61        Update specified paths in the index file before committing.
  62
  63
  64Author
  65------
  66Written by Linus Torvalds <torvalds@osdl.org> and
  67Junio C Hamano <junkio@cox.net>
  68
  69
  70GIT
  71---
  72Part of the gitlink:git[7] suite