message if conflicts were detected. Level 1 outputs only
conflicts, 2 outputs conflicts and file changes. Level 5 and
above outputs debugging information. The default is level 2.
+ Can be overriden by 'GIT_MERGE_VERBOSITY' environment variable.
merge.<driver>.name::
Defines a human readable name for a custom low-level
</p>\r
</dd>\r
<dt>\r
+--no-checkout\r
+</dt>\r
+<dt>\r
-n\r
</dt>\r
<dd>\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 06-Jul-2007 17:01:29 UTC\r
+Last updated 13-Jul-2007 05:31:55 UTC\r
</div>\r
</div>\r
</body>\r
Operate quietly. This flag is passed to "rsync" and
"git-fetch-pack" commands when given.
+--no-checkout::
-n::
No checkout of HEAD is performed after the clone is complete.
<h2>SYNOPSIS</h2>\r
<div class="sectionbody">\r
<div class="verseblock">\r
-<div class="content"><em>git-commit</em> [-a | --interactive] [-s] [-v]\r
+<div class="content"><em>git-commit</em> [-a | --interactive] [-s] [-v] [-u]\r
[(-c | -C) <commit> | -F <file> | -m <msg> | --amend]\r
[--no-verify] [-e] [--author <author>]\r
[--] [[-i | -o ]<file>…]</div></div>\r
</p>\r
</dd>\r
<dt>\r
--m <msg>\r
+-m <msg>|--message=<msg>\r
</dt>\r
<dd>\r
<p>\r
</p>\r
</dd>\r
<dt>\r
+-u|--untracked-files\r
+</dt>\r
+<dd>\r
+<p>\r
+ Show all untracked files, also those in uninteresting\r
+ directories, in the "Untracked files:" section of commit\r
+ message template. Without this option only its name and\r
+ a trailing slash are displayed for each untracked\r
+ directory.\r
+</p>\r
+</dd>\r
+<dt>\r
+-v|--verbose\r
+</dt>\r
+<dd>\r
+<p>\r
+ Show unified diff between the HEAD commit and what\r
+ would be committed at the bottom of the commit message\r
+ template. Note that this diff output doesn't have its\r
+ lines prefixed with <em>#</em>.\r
+</p>\r
+</dd>\r
+<dt>\r
-q|--quiet\r
</dt>\r
<dd>\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 16-Jun-2007 09:48:58 UTC\r
+Last updated 13-Jul-2007 05:31:56 UTC\r
</div>\r
</div>\r
</body>\r
SYNOPSIS
--------
[verse]
-'git-commit' [-a | --interactive] [-s] [-v]
+'git-commit' [-a | --interactive] [-s] [-v] [-u]
[(-c | -C) <commit> | -F <file> | -m <msg> | --amend]
[--no-verify] [-e] [--author <author>]
[--] [[-i | -o ]<file>...]
Override the author name used in the commit. Use
`A U Thor <author@example.com>` format.
--m <msg>::
+-m <msg>|--message=<msg>::
Use the given <msg> as the commit message.
-s|--signoff::
as well. This is usually not what you want unless you
are concluding a conflicted merge.
+-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.
+
+-v|--verbose::
+ Show unified diff between the HEAD commit and what
+ would be committed at the bottom of the commit message
+ template. Note that this diff output doesn't have its
+ lines prefixed with '#'.
+
-q|--quiet::
Suppress commit summary message.
message if conflicts were detected. Level 1 outputs only\r
conflicts, 2 outputs conflicts and file changes. Level 5 and\r
above outputs debugging information. The default is level 2.\r
+ Can be overriden by <em>GIT_MERGE_VERBOSITY</em> environment variable.\r
</p>\r
</dd>\r
<dt>\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 13-Jul-2007 00:24:26 UTC\r
+Last updated 13-Jul-2007 05:31:57 UTC\r
</div>\r
</div>\r
</body>\r
would want to start over, you can recover with\r
<a href="git-reset.html">git-reset(1)</a>.</p>\r
</div>\r
+<h2>CONFIGURATION</h2>\r
+<div class="sectionbody">\r
+<dl>\r
+<dt>\r
+merge.summary\r
+</dt>\r
+<dd>\r
+<p>\r
+ Whether to include summaries of merged commits in newly\r
+ created merge commit. False by default.\r
+</p>\r
+</dd>\r
+<dt>\r
+merge.verbosity\r
+</dt>\r
+<dd>\r
+<p>\r
+ Controls the amount of output shown by the recursive merge\r
+ strategy. Level 0 outputs nothing except a final error\r
+ message if conflicts were detected. Level 1 outputs only\r
+ conflicts, 2 outputs conflicts and file changes. Level 5 and\r
+ above outputs debugging information. The default is level 2.\r
+ Can be overriden by <em>GIT_MERGE_VERBOSITY</em> environment variable.\r
+</p>\r
+</dd>\r
+</dl>\r
+</div>\r
<h2>HOW MERGE WORKS</h2>\r
<div class="sectionbody">\r
<p>A merge is always between the current <tt>HEAD</tt> and one or more\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 16-Jun-2007 09:49:12 UTC\r
+Last updated 13-Jul-2007 05:31:58 UTC\r
</div>\r
</div>\r
</body>\r
would want to start over, you can recover with
gitlink:git-reset[1].
+CONFIGURATION
+-------------
+
+merge.summary::
+ Whether to include summaries of merged commits in newly
+ created merge commit. False by default.
+
+merge.verbosity::
+ Controls the amount of output shown by the recursive merge
+ strategy. Level 0 outputs nothing except a final error
+ message if conflicts were detected. Level 1 outputs only
+ conflicts, 2 outputs conflicts and file changes. Level 5 and
+ above outputs debugging information. The default is level 2.
+ Can be overriden by 'GIT_MERGE_VERBOSITY' environment variable.
+
HOW MERGE WORKS
---------------
<h3>other</h3>\r
<dl>\r
<dt>\r
+<em>GIT_MERGE_VERBOSITY</em>\r
+</dt>\r
+<dd>\r
+<p>\r
+ A number controlling the amount of output shown by\r
+ the recursive merge strategy. Overrides merge.verbosity.\r
+ See <a href="git-merge.html">git-merge(1)</a>\r
+</p>\r
+</dd>\r
+<dt>\r
<em>GIT_PAGER</em>\r
</dt>\r
<dd>\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 13-Jul-2007 00:24:28 UTC\r
+Last updated 13-Jul-2007 05:32:01 UTC\r
</div>\r
</div>\r
</body>\r
other
~~~~~
+'GIT_MERGE_VERBOSITY'::
+ A number controlling the amount of output shown by
+ the recursive merge strategy. Overrides merge.verbosity.
+ See gitlink:git-merge[1]
+
'GIT_PAGER'::
This environment variable overrides `$PAGER`.