Skip to content

Commit 52ba295

Browse files
author
Junio C Hamano
committed
Autogenerated HTML docs for v1.6.3.1-54-g99dd
1 parent d4f35a9 commit 52ba295

File tree

6 files changed

+72
-5
lines changed

6 files changed

+72
-5
lines changed

config.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -604,6 +604,12 @@ color.pager::
604604
A boolean to enable/disable colored output when the pager is in
605605
use (default is true).
606606

607+
color.showbranch::
608+
A boolean to enable/disable color in the output of
609+
linkgit:git-show-branch[1]. May be set to `always`,
610+
`false` (or `never`) or `auto` (or `true`), in which case colors are used
611+
only when the output is to a terminal. Defaults to false.
612+
607613
color.status::
608614
A boolean to enable/disable color in the output of
609615
linkgit:git-status[1]. May be set to `always`,

git-add.html

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ <h2>SYNOPSIS</h2>
322322
<div class="sectionbody">
323323
<div class="verseblock">
324324
<div class="content"><em>git add</em> [-n] [-v] [--force | -f] [--interactive | -i] [--patch | -p]
325-
[--all | [--update | -u]] [--intent-to-add | -N]
325+
[--edit | -e] [--all | [--update | -u]] [--intent-to-add | -N]
326326
[--refresh] [--ignore-errors] [--] &lt;filepattern&gt;&#8230;</div></div>
327327
</div>
328328
<h2 id="_description">DESCRIPTION</h2>
@@ -425,6 +425,19 @@ <h2 id="_options">OPTIONS</h2>
425425
</p>
426426
</dd>
427427
<dt>
428+
-e, --edit
429+
</dt>
430+
<dd>
431+
<p>
432+
Open the diff vs. the index in an editor and let the user
433+
edit it. After the editor was closed, adjust the hunk headers
434+
and apply the patch to the index.
435+
</p>
436+
<div class="para"><p><strong>NOTE</strong>: Obviously, if you change anything else than the first character
437+
on lines beginning with a space or a minus, the patch will no longer
438+
apply.</p></div>
439+
</dd>
440+
<dt>
428441
-u
429442
</dt>
430443
<dt>
@@ -697,7 +710,7 @@ <h2 id="_git">GIT</h2>
697710
</div>
698711
<div id="footer">
699712
<div id="footer-text">
700-
Last updated 2009-04-18 06:17:30 UTC
713+
Last updated 2009-05-18 17:42:45 UTC
701714
</div>
702715
</div>
703716
</body>

git-add.txt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SYNOPSIS
99
--------
1010
[verse]
1111
'git add' [-n] [-v] [--force | -f] [--interactive | -i] [--patch | -p]
12-
[--all | [--update | -u]] [--intent-to-add | -N]
12+
[--edit | -e] [--all | [--update | -u]] [--intent-to-add | -N]
1313
[--refresh] [--ignore-errors] [--] <filepattern>...
1414

1515
DESCRIPTION
@@ -76,6 +76,15 @@ OPTIONS
7676
bypassed and the 'patch' subcommand is invoked using each of
7777
the specified filepatterns before exiting.
7878

79+
-e, \--edit::
80+
Open the diff vs. the index in an editor and let the user
81+
edit it. After the editor was closed, adjust the hunk headers
82+
and apply the patch to the index.
83+
+
84+
*NOTE*: Obviously, if you change anything else than the first character
85+
on lines beginning with a space or a minus, the patch will no longer
86+
apply.
87+
7988
-u::
8089
--update::
8190
Update only files that git already knows about, staging modified

git-config.html

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1610,6 +1610,17 @@ <h3 id="_variables">Variables</h3><div style="clear:left"></div>
16101610
</p>
16111611
</dd>
16121612
<dt>
1613+
color.showbranch
1614+
</dt>
1615+
<dd>
1616+
<p>
1617+
A boolean to enable/disable color in the output of
1618+
<a href="git-show-branch.html">git-show-branch(1)</a>. May be set to <tt>always</tt>,
1619+
<tt>false</tt> (or <tt>never</tt>) or <tt>auto</tt> (or <tt>true</tt>), in which case colors are used
1620+
only when the output is to a terminal. Defaults to false.
1621+
</p>
1622+
</dd>
1623+
<dt>
16131624
color.status
16141625
</dt>
16151626
<dd>
@@ -3307,7 +3318,7 @@ <h2 id="_git">GIT</h2>
33073318
</div>
33083319
<div id="footer">
33093320
<div id="footer-text">
3310-
Last updated 2009-05-10 06:47:57 UTC
3321+
Last updated 2009-05-18 17:42:45 UTC
33113322
</div>
33123323
</div>
33133324
</body>

git-show-branch.html

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,7 @@ <h2>SYNOPSIS</h2>
323323
<div class="verseblock">
324324
<div class="content"><em>git show-branch</em> [--all] [--remotes] [--topo-order] [--current]
325325
[--more=&lt;n&gt; | --list | --independent | --merge-base]
326+
[--color | --no-color]
326327
[--no-name | --sha1-name] [--topics] [&lt;rev&gt; | &lt;glob&gt;]&#8230;
327328
<em>git show-branch</em> (-g|--reflog)[=&lt;n&gt;[,&lt;base&gt;]] [--list] [&lt;ref&gt;]</div></div>
328329
</div>
@@ -498,6 +499,24 @@ <h2 id="_options">OPTIONS</h2>
498499
current branch (or <tt>HEAD</tt> if it is detached).
499500
</p>
500501
</dd>
502+
<dt>
503+
--color
504+
</dt>
505+
<dd>
506+
<p>
507+
Color the status sign (one of these: <tt>*</tt> <tt>!</tt> <tt>+</tt> <tt>-</tt>) of each commit
508+
corresponding to the branch it's in.
509+
</p>
510+
</dd>
511+
<dt>
512+
--no-color
513+
</dt>
514+
<dd>
515+
<p>
516+
Turn off colored output, even when the configuration file gives the
517+
default to color output.
518+
</p>
519+
</dd>
501520
</dl></div>
502521
<div class="para"><p>Note that --more, --list, --independent and --merge-base options
503522
are mutually exclusive.</p></div>
@@ -578,7 +597,7 @@ <h2 id="_git">GIT</h2>
578597
</div>
579598
<div id="footer">
580599
<div id="footer-text">
581-
Last updated 2009-04-25 08:29:43 UTC
600+
Last updated 2009-05-18 17:42:46 UTC
582601
</div>
583602
</div>
584603
</body>

git-show-branch.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ SYNOPSIS
1010
[verse]
1111
'git show-branch' [--all] [--remotes] [--topo-order] [--current]
1212
[--more=<n> | --list | --independent | --merge-base]
13+
[--color | --no-color]
1314
[--no-name | --sha1-name] [--topics] [<rev> | <glob>]...
1415
'git show-branch' (-g|--reflog)[=<n>[,<base>]] [--list] [<ref>]
1516

@@ -107,6 +108,14 @@ OPTIONS
107108
When no explicit <ref> parameter is given, it defaults to the
108109
current branch (or `HEAD` if it is detached).
109110

111+
--color::
112+
Color the status sign (one of these: `*` `!` `+` `-`) of each commit
113+
corresponding to the branch it's in.
114+
115+
--no-color::
116+
Turn off colored output, even when the configuration file gives the
117+
default to color output.
118+
110119
Note that --more, --list, --independent and --merge-base options
111120
are mutually exclusive.
112121

0 commit comments

Comments
 (0)