summaryrefslogtreecommitdiffstats
path: root/git-commit.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junio@hera.kernel.org>2008-06-23 07:14:08 +0000
committerJunio C Hamano <junio@hera.kernel.org>2008-06-23 07:14:08 +0000
commit4224f999337f29b477b197e893f07c5e24917b11 (patch)
tree54c4281f571a3e9baf48d885119c28bfa5f2917a /git-commit.txt
parenta351d1402dde775bc646f418cb339db2fe7ad3ac (diff)
downloadgit-htmldocs-4224f999337f29b477b197e893f07c5e24917b11.tar.gz
Autogenerated HTML docs for v1.5.6-49-g112db
Diffstat (limited to 'git-commit.txt')
-rw-r--r--git-commit.txt25
1 files changed, 17 insertions, 8 deletions
diff --git a/git-commit.txt b/git-commit.txt
index 7e8b4ff72..d0fe192fb 100644
--- a/git-commit.txt
+++ b/git-commit.txt
@@ -8,7 +8,7 @@ git-commit - Record changes to the repository
SYNOPSIS
--------
[verse]
-'git-commit' [-a | --interactive] [-s] [-v] [-u] [--amend]
+'git-commit' [-a | --interactive] [-s] [-v] [-u<mode>] [--amend]
[(-c | -C) <commit>] [-F <file> | -m <msg>]
[--allow-empty] [--no-verify] [-e] [--author=<author>]
[--cleanup=<mode>] [--] [[-i | -o ]<file>...]
@@ -162,13 +162,22 @@ but can be used to amend a merge commit.
the last commit without committing changes that have
already been staged.
--u::
---untracked-files::
- Show all untracked files, also those in uninteresting
- directories, in the "Untracked files:" section of commit
- message template. Without this option only its name and
- a trailing slash are displayed for each untracked
- directory.
+-u[<mode>]::
+--untracked-files[=<mode>]::
+ Show untracked files (Default: 'all').
++
+The mode parameter is optional, and is used to specify
+the handling of untracked files. The possible options are:
++
+--
+ - 'no' - Show no untracked files
+ - 'normal' - Shows untracked files and directories
+ - 'all' - Also shows individual files in untracked directories.
+--
++
+See linkgit:git-config[1] for configuration variable
+used to change the default for when the option is not
+specified.
-v::
--verbose::