Skip to content

Commit 610d176

Browse files
author
Junio C Hamano
committed
Autogenerated HTML docs for v1.6.0.4-836-gd5cb
1 parent 4653c6f commit 610d176

19 files changed

+182
-25
lines changed

RelNotes-1.6.0.4.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Fixes since v1.6.0.3
3030
* 'git status' incorrectly reported a submodule directory as an untracked
3131
directory.
3232

33-
* 'git svn' used deprecated 'git-foo' form of subcommand invocaition.
33+
* 'git svn' used deprecated 'git-foo' form of subcommand invocation.
3434

3535
* 'git update-ref -d' to remove a reference did not honor --no-deref option.
3636

RelNotes-1.6.1.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ on.
5555
to a non-zero value to accept the suggestion when git can uniquely
5656
guess.
5757

58-
* The packfile machinery hopefully is more robust when dealilng with
58+
* The packfile machinery hopefully is more robust when dealing with
5959
corrupt packs if redundant objects involved in the corruption are
60-
available elsehwere.
60+
available elsewhere.
6161

6262
* "git add -N path..." adds the named paths as an empty blob, so that
6363
subsequent "git diff" will show a diff as if they are creation events.
@@ -157,7 +157,7 @@ on.
157157
* "git log" learned "--source" to show what ref each commit was reached
158158
from.
159159

160-
* "git log" also learned "--simplify-by-decration" to show the
160+
* "git log" also learned "--simplify-by-decoration" to show the
161161
birds-eye-view of the topology of the history.
162162

163163
* "git log --pretty=format:" learned "%d" format element that inserts

config.txt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,6 +413,15 @@ data writes properly, but can be useful for filesystems that do not use
413413
journalling (traditional UNIX filesystems) or that only journal metadata
414414
and not file contents (OS X's HFS+, or Linux ext3 with "data=writeback").
415415

416+
core.preloadindex::
417+
Enable parallel index preload for operations like 'git diff'
418+
+
419+
This can speed up operations like 'git diff' and 'git status' especially
420+
on filesystems like NFS that have weak caching semantics and thus
421+
relatively high IO latencies. With this set to 'true', git will do the
422+
index comparison to the filesystem data in parallel, allowing
423+
overlapping IO's.
424+
416425
alias.*::
417426
Command aliases for the linkgit:git[1] command wrapper - e.g.
418427
after defining "alias.last = cat-file commit HEAD", the invocation
@@ -820,7 +829,7 @@ gui.fastcopyblame::
820829
repositories at the expense of less thorough copy detection.
821830

822831
gui.copyblamethreshold::
823-
Specifies the theshold to use in 'git gui blame' original location
832+
Specifies the threshold to use in 'git gui blame' original location
824833
detection, measured in alphanumeric characters. See the
825834
linkgit:git-blame[1] manual for more information on copy detection.
826835

git-add.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ <h2 id="_options">OPTIONS</h2>
465465
Record only the fact that the path will be added later. An entry
466466
for the path is placed in the index with no content. This is
467467
useful for, among other things, showing the unstaged content of
468-
such files with <em>git diff</em> and commiting them with <em>git commit
468+
such files with <em>git diff</em> and committing them with <em>git commit
469469
-a</em>.
470470
</p>
471471
</dd>
@@ -701,7 +701,7 @@ <h2 id="_git">GIT</h2>
701701
</div>
702702
<div id="footer">
703703
<div id="footer-text">
704-
Last updated 2008-10-31 11:28:19 UTC
704+
Last updated 2008-11-28 06:26:51 UTC
705705
</div>
706706
</div>
707707
</body>

git-add.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ OPTIONS
9898
Record only the fact that the path will be added later. An entry
9999
for the path is placed in the index with no content. This is
100100
useful for, among other things, showing the unstaged content of
101-
such files with 'git diff' and commiting them with 'git commit
101+
such files with 'git diff' and committing them with 'git commit
102102
-a'.
103103

104104
--refresh::

git-commit.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ <h2 id="_options">OPTIONS</h2>
475475
</dt>
476476
<dd>
477477
<p>
478-
Add Signed-off-by line by the commiter at the end of the commit
478+
Add Signed-off-by line by the committer at the end of the commit
479479
log message.
480480
</p>
481481
</dd>
@@ -868,7 +868,7 @@ <h2 id="_git">GIT</h2>
868868
</div>
869869
<div id="footer">
870870
<div id="footer-text">
871-
Last updated 2008-11-19 02:07:45 UTC
871+
Last updated 2008-11-28 06:26:51 UTC
872872
</div>
873873
</div>
874874
</body>

git-commit.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ OPTIONS
9595

9696
-s::
9797
--signoff::
98-
Add Signed-off-by line by the commiter at the end of the commit
98+
Add Signed-off-by line by the committer at the end of the commit
9999
log message.
100100

101101
-n::

git-config.html

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1286,6 +1286,19 @@ <h3 id="_variables">Variables</h3><div style="clear:left"></div>
12861286
and not file contents (OS X's HFS+, or Linux ext3 with "data=writeback").</p></div>
12871287
</dd>
12881288
<dt>
1289+
core.preloadindex
1290+
</dt>
1291+
<dd>
1292+
<p>
1293+
Enable parallel index preload for operations like <em>git diff</em>
1294+
</p>
1295+
<div class="para"><p>This can speed up operations like <em>git diff</em> and <em>git status</em> especially
1296+
on filesystems like NFS that have weak caching semantics and thus
1297+
relatively high IO latencies. With this set to <em>true</em>, git will do the
1298+
index comparison to the filesystem data in parallel, allowing
1299+
overlapping IO's.</p></div>
1300+
</dd>
1301+
<dt>
12891302
alias.*
12901303
</dt>
12911304
<dd>
@@ -2022,7 +2035,7 @@ <h3 id="_variables">Variables</h3><div style="clear:left"></div>
20222035
</dt>
20232036
<dd>
20242037
<p>
2025-
Specifies the theshold to use in <em>git gui blame</em> original location
2038+
Specifies the threshold to use in <em>git gui blame</em> original location
20262039
detection, measured in alphanumeric characters. See the
20272040
<a href="git-blame.html">git-blame(1)</a> manual for more information on copy detection.
20282041
</p>
@@ -2903,7 +2916,7 @@ <h2 id="_git">GIT</h2>
29032916
</div>
29042917
<div id="footer">
29052918
<div id="footer-text">
2906-
Last updated 2008-11-26 22:50:09 UTC
2919+
Last updated 2008-11-28 06:26:51 UTC
29072920
</div>
29082921
</div>
29092922
</body>

git-merge.html

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,28 @@ <h2 id="_options">OPTIONS</h2>
337337
<div class="sectionbody">
338338
<div class="vlist"><dl>
339339
<dt>
340+
-q
341+
</dt>
342+
<dt>
343+
--quiet
344+
</dt>
345+
<dd>
346+
<p>
347+
Operate quietly.
348+
</p>
349+
</dd>
350+
<dt>
351+
-v
352+
</dt>
353+
<dt>
354+
--verbose
355+
</dt>
356+
<dd>
357+
<p>
358+
Be verbose.
359+
</p>
360+
</dd>
361+
<dt>
340362
--stat
341363
</dt>
342364
<dd>
@@ -898,7 +920,7 @@ <h2 id="_git">GIT</h2>
898920
</div>
899921
<div id="footer">
900922
<div id="footer-text">
901-
Last updated 2008-11-26 22:50:09 UTC
923+
Last updated 2008-11-28 06:26:51 UTC
902924
</div>
903925
</div>
904926
</body>

git-pull.html

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,28 @@ <h2 id="_options">OPTIONS</h2>
337337
<div class="sectionbody">
338338
<div class="vlist"><dl>
339339
<dt>
340+
-q
341+
</dt>
342+
<dt>
343+
--quiet
344+
</dt>
345+
<dd>
346+
<p>
347+
Operate quietly.
348+
</p>
349+
</dd>
350+
<dt>
351+
-v
352+
</dt>
353+
<dt>
354+
--verbose
355+
</dt>
356+
<dd>
357+
<p>
358+
Be verbose.
359+
</p>
360+
</dd>
361+
<dt>
340362
--stat
341363
</dt>
342364
<dd>
@@ -1155,7 +1177,7 @@ <h2 id="_git">GIT</h2>
11551177
</div>
11561178
<div id="footer">
11571179
<div id="footer-text">
1158-
Last updated 2008-11-14 08:26:10 UTC
1180+
Last updated 2008-11-28 06:26:52 UTC
11591181
</div>
11601182
</div>
11611183
</body>

0 commit comments

Comments
 (0)