Skip to content

Commit eb41599

Browse files
author
Junio C Hamano
committed
Autogenerated HTML docs for v1.5.6-rc2-15-g457bb
1 parent e2b205c commit eb41599

File tree

125 files changed

+1363
-480
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+1363
-480
lines changed

blame-options.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ of lines before or after the line given by <start>.
4141
-S <revs-file>::
4242
Use revs from revs-file instead of calling linkgit:git-rev-list[1].
4343

44-
-p, --porcelain::
44+
-p::
45+
--porcelain::
4546
Show in a format designed for machine consumption.
4647

4748
--incremental::
@@ -83,5 +84,6 @@ alphanumeric characters that git must detect as moving
8384
between files for it to associate those lines with the parent
8485
commit.
8586

86-
-h, --help::
87+
-h::
88+
--help::
8789
Show help message.

fetch-options.txt

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,66 @@
1-
-q, \--quiet::
1+
-q::
2+
--quiet::
23
Pass --quiet to git-fetch-pack and silence any other internally
34
used programs.
45

5-
-v, \--verbose::
6+
-v::
7+
--verbose::
68
Be verbose.
79

8-
-a, \--append::
10+
-a::
11+
--append::
912
Append ref names and object names of fetched refs to the
1013
existing contents of `.git/FETCH_HEAD`. Without this
1114
option old data in `.git/FETCH_HEAD` will be overwritten.
1215

13-
\--upload-pack <upload-pack>::
16+
--upload-pack <upload-pack>::
1417
When given, and the repository to fetch from is handled
1518
by 'git-fetch-pack', '--exec=<upload-pack>' is passed to
1619
the command to specify non-default path for the command
1720
run on the other end.
1821

19-
-f, \--force::
22+
-f::
23+
--force::
2024
When `git-fetch` is used with `<rbranch>:<lbranch>`
2125
refspec, it refuses to update the local branch
2226
`<lbranch>` unless the remote branch `<rbranch>` it
2327
fetches is a descendant of `<lbranch>`. This option
2428
overrides that check.
2529

2630
ifdef::git-pull[]
27-
\--no-tags::
31+
--no-tags::
2832
endif::git-pull[]
2933
ifndef::git-pull[]
30-
-n, \--no-tags::
34+
-n::
35+
--no-tags::
3136
endif::git-pull[]
3237
By default, tags that point at objects that are downloaded
3338
from the remote repository are fetched and stored locally.
3439
This option disables this automatic tag following.
3540

36-
-t, \--tags::
41+
-t::
42+
--tags::
3743
Most of the tags are fetched automatically as branch
3844
heads are downloaded, but tags that do not point at
3945
objects reachable from the branch heads that are being
4046
tracked will not be fetched by this mechanism. This
4147
flag lets all tags and their associated objects be
4248
downloaded.
4349

44-
-k, \--keep::
50+
-k::
51+
--keep::
4552
Keep downloaded pack.
4653

47-
-u, \--update-head-ok::
54+
-u::
55+
--update-head-ok::
4856
By default `git-fetch` refuses to update the head which
4957
corresponds to the current branch. This flag disables the
5058
check. This is purely for the internal use for `git-pull`
5159
to communicate with `git-fetch`, and unless you are
5260
implementing your own Porcelain you are not supposed to
5361
use it.
5462

55-
\--depth=<depth>::
63+
--depth=<depth>::
5664
Deepen the history of a 'shallow' repository created by
5765
`git clone` with `--depth=<depth>` option (see linkgit:git-clone[1])
5866
by the specified number of commits.

git-add.html

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -316,15 +316,21 @@ <h2>OPTIONS</h2>
316316
</p>
317317
</dd>
318318
<dt>
319-
-n, --dry-run
319+
-n
320+
</dt>
321+
<dt>
322+
--dry-run
320323
</dt>
321324
<dd>
322325
<p>
323326
Don't actually add the file(s), just show if they exist.
324327
</p>
325328
</dd>
326329
<dt>
327-
-v, --verbose
330+
-v
331+
</dt>
332+
<dt>
333+
--verbose
328334
</dt>
329335
<dd>
330336
<p>
@@ -340,7 +346,10 @@ <h2>OPTIONS</h2>
340346
</p>
341347
</dd>
342348
<dt>
343-
-i, --interactive
349+
-i
350+
</dt>
351+
<dt>
352+
--interactive
344353
</dt>
345354
<dd>
346355
<p>
@@ -351,7 +360,10 @@ <h2>OPTIONS</h2>
351360
</p>
352361
</dd>
353362
<dt>
354-
-p, --patch
363+
-p
364+
</dt>
365+
<dt>
366+
--patch
355367
</dt>
356368
<dd>
357369
<p>
@@ -604,7 +616,7 @@ <h2>GIT</h2>
604616
</div>
605617
<div id="footer">
606618
<div id="footer-text">
607-
Last updated 08-Jun-2008 01:33:18 UTC
619+
Last updated 08-Jun-2008 22:46:16 UTC
608620
</div>
609621
</div>
610622
</body>

git-add.txt

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,22 +50,26 @@ OPTIONS
5050
and `dir/file2`) can be given to add all files in the
5151
directory, recursively.
5252

53-
-n, \--dry-run::
53+
-n::
54+
--dry-run::
5455
Don't actually add the file(s), just show if they exist.
5556

56-
-v, \--verbose::
57+
-v::
58+
--verbose::
5759
Be verbose.
5860

5961
-f::
6062
Allow adding otherwise ignored files.
6163

62-
-i, \--interactive::
64+
-i::
65+
--interactive::
6366
Add modified contents in the working tree interactively to
6467
the index. Optional path arguments may be supplied to limit
6568
operation to a subset of the working tree. See ``Interactive
6669
mode'' for details.
6770

68-
-p, \--patch::
71+
-p::
72+
--patch::
6973
Similar to Interactive mode but the initial command loop is
7074
bypassed and the 'patch' subcommand is invoked using each of
7175
the specified filepatterns before exiting.
@@ -79,11 +83,11 @@ OPTIONS
7983
command line. If no paths are specified, all tracked files in the
8084
current directory and its subdirectories are updated.
8185

82-
\--refresh::
86+
--refresh::
8387
Don't add the file(s), but only refresh their stat()
8488
information in the index.
8589

86-
\--ignore-errors::
90+
--ignore-errors::
8791
If some files could not be added because of errors indexing
8892
them, do not abort the operation, but continue adding the
8993
others. The command shall still exit with non-zero status.

git-am.html

Lines changed: 33 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,10 @@ <h2>OPTIONS</h2>
299299
</p>
300300
</dd>
301301
<dt>
302-
-s, --signoff
302+
-s
303+
</dt>
304+
<dt>
305+
--signoff
303306
</dt>
304307
<dd>
305308
<p>
@@ -308,15 +311,21 @@ <h2>OPTIONS</h2>
308311
</p>
309312
</dd>
310313
<dt>
311-
-k, --keep
314+
-k
315+
</dt>
316+
<dt>
317+
--keep
312318
</dt>
313319
<dd>
314320
<p>
315321
Pass <tt>-k</tt> flag to <tt>git-mailinfo</tt> (see <a href="git-mailinfo.html">git-mailinfo(1)</a>).
316322
</p>
317323
</dd>
318324
<dt>
319-
-u, --utf8
325+
-u
326+
</dt>
327+
<dt>
328+
--utf8
320329
</dt>
321330
<dd>
322331
<p>
@@ -339,7 +348,10 @@ <h2>OPTIONS</h2>
339348
</p>
340349
</dd>
341350
<dt>
342-
-3, --3way
351+
-3
352+
</dt>
353+
<dt>
354+
--3way
343355
</dt>
344356
<dd>
345357
<p>
@@ -350,7 +362,10 @@ <h2>OPTIONS</h2>
350362
</p>
351363
</dd>
352364
<dt>
353-
-b, --binary
365+
-b
366+
</dt>
367+
<dt>
368+
--binary
354369
</dt>
355370
<dd>
356371
<p>
@@ -369,7 +384,10 @@ <h2>OPTIONS</h2>
369384
</p>
370385
</dd>
371386
<dt>
372-
-C&lt;n&gt;, -p&lt;n&gt;
387+
-C&lt;n&gt;
388+
</dt>
389+
<dt>
390+
-p&lt;n&gt;
373391
</dt>
374392
<dd>
375393
<p>
@@ -379,7 +397,10 @@ <h2>OPTIONS</h2>
379397
</p>
380398
</dd>
381399
<dt>
382-
-i, --interactive
400+
-i
401+
</dt>
402+
<dt>
403+
--interactive
383404
</dt>
384405
<dd>
385406
<p>
@@ -396,7 +417,10 @@ <h2>OPTIONS</h2>
396417
</p>
397418
</dd>
398419
<dt>
399-
-r, --resolved
420+
-r
421+
</dt>
422+
<dt>
423+
--resolved
400424
</dt>
401425
<dd>
402426
<p>
@@ -500,7 +524,7 @@ <h2>GIT</h2>
500524
</div>
501525
<div id="footer">
502526
<div id="footer-text">
503-
Last updated 08-Jun-2008 01:33:18 UTC
527+
Last updated 08-Jun-2008 22:46:16 UTC
504528
</div>
505529
</div>
506530
</body>

git-am.txt

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,17 @@ OPTIONS
2828
supply this argument, reads from the standard input. If you supply
2929
directories, they'll be treated as Maildirs.
3030

31-
-s, --signoff::
31+
-s::
32+
--signoff::
3233
Add `Signed-off-by:` line to the commit message, using
3334
the committer identity of yourself.
3435

35-
-k, --keep::
36+
-k::
37+
--keep::
3638
Pass `-k` flag to `git-mailinfo` (see linkgit:git-mailinfo[1]).
3739

38-
-u, --utf8::
40+
-u::
41+
--utf8::
3942
Pass `-u` flag to `git-mailinfo` (see linkgit:git-mailinfo[1]).
4043
The proposed commit log message taken from the e-mail
4144
is re-coded into UTF-8 encoding (configuration variable
@@ -49,13 +52,15 @@ default. You could use `--no-utf8` to override this.
4952
Pass `-n` flag to `git-mailinfo` (see
5053
linkgit:git-mailinfo[1]).
5154

52-
-3, --3way::
55+
-3::
56+
--3way::
5357
When the patch does not apply cleanly, fall back on
5458
3-way merge, if the patch records the identity of blobs
5559
it is supposed to apply to, and we have those blobs
5660
available locally.
5761

58-
-b, --binary::
62+
-b::
63+
--binary::
5964
Pass `--allow-binary-replacement` flag to `git-apply`
6065
(see linkgit:git-apply[1]).
6166

@@ -64,19 +69,22 @@ default. You could use `--no-utf8` to override this.
6469
program that applies
6570
the patch.
6671

67-
-C<n>, -p<n>::
72+
-C<n>::
73+
-p<n>::
6874
These flags are passed to the `git-apply` (see linkgit:git-apply[1])
6975
program that applies
7076
the patch.
7177

72-
-i, --interactive::
78+
-i::
79+
--interactive::
7380
Run interactively.
7481

7582
--skip::
7683
Skip the current patch. This is only meaningful when
7784
restarting an aborted patch.
7885

79-
-r, --resolved::
86+
-r::
87+
--resolved::
8088
After a patch failure (e.g. attempting to apply
8189
conflicting patch), the user has applied it by hand and
8290
the index file stores the result of the application.

0 commit comments

Comments
 (0)