X Tutup
Skip to content

Commit 4e27231

Browse files
author
Junio C Hamano
committed
Autogenerated HTML docs for v1.5.4-rc2-68-ge708a
1 parent 35738e8 commit 4e27231

File tree

10 files changed

+146
-14
lines changed

10 files changed

+146
-14
lines changed

RelNotes-1.5.3.8.txt

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
GIT v1.5.3.8 Release Notes
2+
==========================
3+
4+
Fixes since v1.5.3.7
5+
--------------------
6+
7+
* Some documentation used "email.com" as an example domain.
8+
9+
* git-svn fix to handle funky branch and project names going over
10+
http/https correctly.
11+
12+
* git-svn fix to tone down a needlessly alarming warning message.
13+
14+
* git-clone did not correctly report errors while fetching over http.
15+
16+
* git-send-email added redundant Message-Id: header to the outgoing
17+
e-mail when the patch text already had one.
18+
19+
* a read-beyond-end-of-buffer bug in configuration file updater was fixed.
20+
21+
* git-grep used to show the same hit repeatedly for unmerged paths.
22+
23+
* After amending the patch title in "git-am -i", the command did not
24+
report the patch it applied with the updated title.
25+

config.txt

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,15 @@ specified as 'gitcvs.<access_method>.<varname>' (where 'access_method'
586586
is one of "ext" and "pserver") to make them apply only for the given
587587
access method.
588588

589+
help.browser::
590+
Specify the browser that will be used to display help in the
591+
'web' format. See linkgit:git-help[1].
592+
593+
help.format::
594+
Override the default help format used by linkgit:git-help[1].
595+
Values 'man', 'info', 'web' and 'html' are supported. 'man' is
596+
the default. 'web' and 'html' are the same.
597+
589598
http.proxy::
590599
Override the HTTP proxy, normally configured using the 'http_proxy'
591600
environment variable (see linkgit:curl[1]). This can be overridden
@@ -643,6 +652,25 @@ i18n.logOutputEncoding::
643652
Character encoding the commit messages are converted to when
644653
running `git-log` and friends.
645654

655+
instaweb.browser::
656+
Specify the program that will be used to browse your working
657+
repository in gitweb. See linkgit:git-instaweb[1].
658+
659+
instaweb.httpd::
660+
The HTTP daemon command-line to start gitweb on your working
661+
repository. See linkgit:git-instaweb[1].
662+
663+
instaweb.local::
664+
If true the web server started by linkgit:git-instaweb[1] will
665+
be bound to the local IP (127.0.0.1).
666+
667+
instaweb.modulepath::
668+
The module path for an apache httpd used by linkgit:git-instaweb[1].
669+
670+
instaweb.port::
671+
The port number to bind the gitweb httpd to. See
672+
linkgit:git-instaweb[1].
673+
646674
log.showroot::
647675
If true, the initial commit will be shown as a big creation event.
648676
This is equivalent to a diff against an empty tree.
@@ -844,3 +872,8 @@ receive.denyNonFastForwards::
844872
transfer.unpackLimit::
845873
When `fetch.unpackLimit` or `receive.unpackLimit` are
846874
not set, the value of this variable is used instead.
875+
876+
web.browser::
877+
Specify a web browser that may be used by some commands.
878+
Currently only linkgit:git-instaweb[1] and linkgit:git-help[1]
879+
may use it.

git-config.html

Lines changed: 74 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1598,6 +1598,25 @@ <h3>Variables</h3>
15981598
access method.</p>
15991599
<dl>
16001600
<dt>
1601+
help.browser
1602+
</dt>
1603+
<dd>
1604+
<p>
1605+
Specify the browser that will be used to display help in the
1606+
<em>web</em> format. See <a href="git-help.html">git-help(1)</a>.
1607+
</p>
1608+
</dd>
1609+
<dt>
1610+
help.format
1611+
</dt>
1612+
<dd>
1613+
<p>
1614+
Override the default help format used by <a href="git-help.html">git-help(1)</a>.
1615+
Values <em>man</em>, <em>info</em>, <em>web</em> and <em>html</em> are supported. <em>man</em> is
1616+
the default. <em>web</em> and <em>html</em> are the same.
1617+
</p>
1618+
</dd>
1619+
<dt>
16011620
http.proxy
16021621
</dt>
16031622
<dd>
@@ -1710,6 +1729,50 @@ <h3>Variables</h3>
17101729
</p>
17111730
</dd>
17121731
<dt>
1732+
instaweb.browser
1733+
</dt>
1734+
<dd>
1735+
<p>
1736+
Specify the program that will be used to browse your working
1737+
repository in gitweb. See <a href="git-instaweb.html">git-instaweb(1)</a>.
1738+
</p>
1739+
</dd>
1740+
<dt>
1741+
instaweb.httpd
1742+
</dt>
1743+
<dd>
1744+
<p>
1745+
The HTTP daemon command-line to start gitweb on your working
1746+
repository. See <a href="git-instaweb.html">git-instaweb(1)</a>.
1747+
</p>
1748+
</dd>
1749+
<dt>
1750+
instaweb.local
1751+
</dt>
1752+
<dd>
1753+
<p>
1754+
If true the web server started by <a href="git-instaweb.html">git-instaweb(1)</a> will
1755+
be bound to the local IP (127.0.0.1).
1756+
</p>
1757+
</dd>
1758+
<dt>
1759+
instaweb.modulepath
1760+
</dt>
1761+
<dd>
1762+
<p>
1763+
The module path for an apache httpd used by <a href="git-instaweb.html">git-instaweb(1)</a>.
1764+
</p>
1765+
</dd>
1766+
<dt>
1767+
instaweb.port
1768+
</dt>
1769+
<dd>
1770+
<p>
1771+
The port number to bind the gitweb httpd to. See
1772+
<a href="git-instaweb.html">git-instaweb(1)</a>.
1773+
</p>
1774+
</dd>
1775+
<dt>
17131776
log.showroot
17141777
</dt>
17151778
<dd>
@@ -2111,6 +2174,16 @@ <h3>Variables</h3>
21112174
not set, the value of this variable is used instead.
21122175
</p>
21132176
</dd>
2177+
<dt>
2178+
web.browser
2179+
</dt>
2180+
<dd>
2181+
<p>
2182+
Specify a web browser that may be used by some commands.
2183+
Currently only <a href="git-instaweb.html">git-instaweb(1)</a> and <a href="git-help.html">git-help(1)</a>
2184+
may use it.
2185+
</p>
2186+
</dd>
21142187
</dl>
21152188
</div>
21162189
<h2>Author</h2>
@@ -2127,7 +2200,7 @@ <h2>GIT</h2>
21272200
</div>
21282201
<div id="footer">
21292202
<div id="footer-text">
2130-
Last updated 07-Jan-2008 07:50:08 UTC
2203+
Last updated 08-Jan-2008 09:12:44 UTC
21312204
</div>
21322205
</div>
21332206
</body>

git.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1938,7 +1938,7 @@ <h2>GIT</h2>
19381938
</div>
19391939
<div id="footer">
19401940
<div id="footer-text">
1941-
Last updated 07-Jan-2008 07:51:01 UTC
1941+
Last updated 08-Jan-2008 09:12:45 UTC
19421942
</div>
19431943
</div>
19441944
</body>

git.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,10 @@ unreleased) version of git, that is available from 'master'
4343
branch of the `git.git` repository.
4444
Documentation for older releases are available here:
4545

46-
* link:v1.5.3/git.html[documentation for release 1.5.3]
46+
* link:v1.5.3.8/git.html[documentation for release 1.5.3.8]
4747

4848
* release notes for
49+
link:RelNotes-1.5.3.8.txt[1.5.3.8],
4950
link:RelNotes-1.5.3.7.txt[1.5.3.7],
5051
link:RelNotes-1.5.3.6.txt[1.5.3.6],
5152
link:RelNotes-1.5.3.5.txt[1.5.3.5],

gitcli.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ <h3>Separating argument from the option</h3>
369369
$ git foo -oArg
370370
$ git foo -o Arg</tt></pre>
371371
</div></div>
372-
<p>However, this is <strong>NOT</strong> allowed for switches with an optionnal value, where the
372+
<p>However, this is <strong>NOT</strong> allowed for switches with an optional value, where the
373373
<em>sticked</em> form must be used:</p>
374374
<div class="listingblock">
375375
<div class="content">
@@ -388,7 +388,7 @@ <h2>GIT</h2>
388388
</div>
389389
<div id="footer">
390390
<div id="footer-text">
391-
Last updated 07-Jan-2008 07:51:00 UTC
391+
Last updated 08-Jan-2008 09:12:44 UTC
392392
</div>
393393
</div>
394394
</body>

gitcli.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ $ git foo -oArg
9595
$ git foo -o Arg
9696
----------------------------
9797

98-
However, this is *NOT* allowed for switches with an optionnal value, where the
98+
However, this is *NOT* allowed for switches with an optional value, where the
9999
'sticked' form must be used:
100100
----------------------------
101101
$ git describe --abbrev HEAD # correct

technical/api-diff.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ <h2>Data structures</h2>
438438
</dt>
439439
<dd>
440440
<p>
441-
Number of hexdigits to abbrevate raw format output to.
441+
Number of hexdigits to abbreviate raw format output to.
442442
</p>
443443
</dd>
444444
<dt>
@@ -449,7 +449,7 @@ <h2>Data structures</h2>
449449
A constant string (can and typically does contain newlines to
450450
look for a block of text, not just a single line) to filter out
451451
the filepairs that do not change the number of strings contained
452-
in its preimage and postmage of the diff_queue.
452+
in its preimage and postimage of the diff_queue.
453453
</p>
454454
</dd>
455455
<dt>
@@ -545,7 +545,7 @@ <h2>Data structures</h2>
545545
<dd>
546546
<p>
547547
For communication between the calling program and the options
548-
parser; tell the calling program to signal the presense of
548+
parser; tell the calling program to signal the presence of
549549
difference using program exit code.
550550
</p>
551551
</dd>
@@ -582,7 +582,7 @@ <h2>Data structures</h2>
582582
</div>
583583
<div id="footer">
584584
<div id="footer-text">
585-
Last updated 07-Jan-2008 07:51:22 UTC
585+
Last updated 08-Jan-2008 09:12:47 UTC
586586
</div>
587587
</div>
588588
</body>

technical/api-diff.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@ Notable members are:
102102
and copies.
103103

104104
`abbrev`::
105-
Number of hexdigits to abbrevate raw format output to.
105+
Number of hexdigits to abbreviate raw format output to.
106106

107107
`pickaxe`::
108108
A constant string (can and typically does contain newlines to
109109
look for a block of text, not just a single line) to filter out
110110
the filepairs that do not change the number of strings contained
111-
in its preimage and postmage of the diff_queue.
111+
in its preimage and postimage of the diff_queue.
112112

113113
`flags`::
114114
This is mostly a collection of boolean options that affects the
@@ -149,7 +149,7 @@ REVERSE_DIFF;;
149149

150150
EXIT_WITH_STATUS;;
151151
For communication between the calling program and the options
152-
parser; tell the calling program to signal the presense of
152+
parser; tell the calling program to signal the presence of
153153
difference using program exit code.
154154

155155
HAS_CHANGES;;

technical/pack-format.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Pack file entry: <+
125125

126126
- A table of 4-byte CRC32 values of the packed object data.
127127
This is new in v2 so compressed data can be copied directly
128-
from pack to pack during repacking withough undetected
128+
from pack to pack during repacking without undetected
129129
data corruption.
130130

131131
- A table of 4-byte offset values (in network byte order).

0 commit comments

Comments
 (0)
X Tutup