powerful)</p>\r
<div class="listingblock">\r
<div class="content">\r
-<pre><tt>$ git-whatchanged -p --root</tt></pre>\r
+<pre><tt>$ git-whatchanged -p</tt></pre>\r
</div></div>\r
<p>and you will see exactly what has changed in the repository over its\r
short history.</p>\r
<td class="icon">\r
<div class="title">Note</div>\r
</td>\r
-<td class="content">The <tt>--root</tt> flag is a flag to <tt>git-diff-tree</tt> to tell it to\r
-show the initial aka <em>root</em> commit too. Normally you'd probably not\r
-want to see the initial import diff, but since the tutorial project\r
-was started from scratch and is so small, we use it to make the result\r
-a bit more interesting.</td>\r
+<td class="content">When using the above two commands, the initial commit will be shown.\r
+If this is a problem because it is huge, you can hide it by setting\r
+the log.showroot configuration variable to false. Having this, you\r
+can still show it for each command just adding the <tt>--root</tt> option,\r
+which is a flag for <tt>git-diff-tree</tt> accepted by both commands.</td>\r
</tr></table>\r
</div>\r
<p>With that, you should now be having some inkling of what git does, and\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 18-Jan-2008 10:19:40 UTC\r
+Last updated 11-Apr-2008 05:28:27 UTC\r
</div>\r
</div>\r
</body>\r
powerful)
----------------
-$ git-whatchanged -p --root
+$ git-whatchanged -p
----------------
and you will see exactly what has changed in the repository over its
short history.
[NOTE]
-The `\--root` flag is a flag to `git-diff-tree` to tell it to
-show the initial aka 'root' commit too. Normally you'd probably not
-want to see the initial import diff, but since the tutorial project
-was started from scratch and is so small, we use it to make the result
-a bit more interesting.
+When using the above two commands, the initial commit will be shown.
+If this is a problem because it is huge, you can hide it by setting
+the log.showroot configuration variable to false. Having this, you
+can still show it for each command just adding the `\--root` option,
+which is a flag for `git-diff-tree` accepted by both commands.
With that, you should now be having some inkling of what git does, and
can explore on your own.
<div class="verseblock">\r
<div class="content"><em>git-tag</em> [-a | -s | -u <key-id>] [-f] [-m <msg> | -F <file>] <name> [<head>]\r
<em>git-tag</em> -d <name>…\r
-<em>git-tag</em> [-n [<num>]] -l [<pattern>]\r
+<em>git-tag</em> [-n[<num>]] -l [<pattern>]\r
<em>git-tag</em> -v <name>…</div></div>\r
</div>\r
<h2>DESCRIPTION</h2>\r
</p>\r
</dd>\r
<dt>\r
--n <num>\r
+-n<num>\r
</dt>\r
<dd>\r
<p>\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 25-Mar-2008 09:10:21 UTC\r
+Last updated 11-Apr-2008 05:28:27 UTC\r
</div>\r
</div>\r
</body>\r
[verse]
'git-tag' [-a | -s | -u <key-id>] [-f] [-m <msg> | -F <file>] <name> [<head>]
'git-tag' -d <name>...
-'git-tag' [-n [<num>]] -l [<pattern>]
+'git-tag' [-n[<num>]] -l [<pattern>]
'git-tag' -v <name>...
DESCRIPTION
-v::
Verify the gpg signature of the given tag names.
--n <num>::
+-n<num>::
<num> specifies how many lines from the annotation, if any,
are printed when using -l.
The default is not to print any annotation lines.