Skip to content

Commit 543f8d6

Browse files
author
Junio C Hamano
committed
Autogenerated HTML docs for v1.6.4
1 parent ceec6ab commit 543f8d6

15 files changed

+90
-32
lines changed

RelNotes-1.6.3.4.txt

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
GIT v1.6.3.4 Release Notes
2+
==========================
3+
4+
Fixes since v1.6.3.3
5+
--------------------
6+
7+
* "git add --no-ignore-errors" did not override configured
8+
add.ignore-errors configuration.
9+
10+
* "git apply --whitespace=fix" did not fix trailing whitespace on an
11+
incomplete line.
12+
13+
* "git branch" opened too many commit objects unnecessarily.
14+
15+
* "git checkout -f $commit" with a path that is a file (or a symlink) in
16+
the work tree to a commit that has a directory at the path issued an
17+
unnecessary error message.
18+
19+
* "git diff -c/--cc" was very inefficient in coalescing the removed lines
20+
shared between parents.
21+
22+
* "git diff -c/--cc" showed removed lines at the beginning of a file
23+
incorrectly.
24+
25+
* "git remote show nickname" did not honor configured
26+
remote.nickname.uploadpack when inspecting the branches at the remote.
27+
28+
* "git request-pull" when talking to the terminal for a preview
29+
showed some of the output in the pager.
30+
31+
* "git request-pull start nickname [end]" did not honor configured
32+
remote.nickname.uploadpack when it ran git-ls-remote against the remote
33+
repository to learn the current tip of branches.
34+
35+
Includes other documentation updates and minor fixes.
36+

RelNotes-1.6.4.txt

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,12 @@ Updates since v1.6.3
6767

6868
* "git cvsexportcommit" learned -k option to stop CVS keywords expansion
6969

70+
* "git fast-export" learned to handle history simplification more
71+
gracefully.
72+
73+
* "git fast-export" learned an option --tag-of-filtered-object to handle
74+
dangling tags resulting from history simplification more usefully.
75+
7076
* "git grep" learned -p option to show the location of the match using the
7177
same context hunk marker "git diff" uses.
7278

@@ -130,15 +136,12 @@ v1.6.3.X series.
130136
section header has a variable definition on the same line, lost
131137
that variable definition.
132138

139+
* "git rebase -p --onto" used to always leave side branches of a merge
140+
intact, even when both branches are subject to rewriting.
141+
133142
* "git repack" used to faithfully follow grafts and considered true
134143
parents recorded in the commit object unreachable from the commit.
135144
After such a repacking, you cannot remove grafts without corrupting
136145
the repository.
137146

138147
* "git send-email" did not detect erroneous loops in alias expansion.
139-
140-
---
141-
exec >/var/tmp/1
142-
echo O=$(git describe master)
143-
O=v1.6.4-rc2-31-g2ceb639
144-
git shortlog --no-merges $O..master ^maint

diff-format.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
The output format from "git-diff-index", "git-diff-tree",
1+
Raw output format
2+
-----------------
3+
4+
The raw output format from "git-diff-index", "git-diff-tree",
25
"git-diff-files" and "git diff --raw" are very similar.
36

47
These commands all compare two sets of things; what is
@@ -16,6 +19,9 @@ git-diff-tree [-r] <tree-ish-1> <tree-ish-2> [<pattern>...]::
1619
git-diff-files [<pattern>...]::
1720
compares the index and the files on the filesystem.
1821

22+
The "git-diff-tree" command begins its ouput by printing the hash of
23+
what is being compared. After that, all the commands print one output
24+
line per changed file.
1925

2026
An output line is formatted this way:
2127

git-diff-files.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -868,9 +868,9 @@ <h2 id="_options">OPTIONS</h2>
868868
</dd>
869869
</dl></div>
870870
</div>
871-
<h2 id="_output_format">Output format</h2>
871+
<h2 id="_raw_output_format">Raw output format</h2>
872872
<div class="sectionbody">
873-
<div class="para"><p>The output format from "git-diff-index", "git-diff-tree",
873+
<div class="para"><p>The raw output format from "git-diff-index", "git-diff-tree",
874874
"git-diff-files" and "git diff --raw" are very similar.</p></div>
875875
<div class="para"><p>These commands all compare two sets of things; what is
876876
compared differs:</p></div>
@@ -908,6 +908,9 @@ <h2 id="_output_format">Output format</h2>
908908
</p>
909909
</dd>
910910
</dl></div>
911+
<div class="para"><p>The "git-diff-tree" command begins its ouput by printing the hash of
912+
what is being compared. After that, all the commands print one output
913+
line per changed file.</p></div>
911914
<div class="para"><p>An output line is formatted this way:</p></div>
912915
<div class="listingblock">
913916
<div class="content">
@@ -1410,7 +1413,7 @@ <h2 id="_git">GIT</h2>
14101413
</div>
14111414
<div id="footer">
14121415
<div id="footer-text">
1413-
Last updated 2009-07-01 02:30:48 UTC
1416+
Last updated 2009-07-29 08:35:00 UTC
14141417
</div>
14151418
</div>
14161419
</body>

git-diff-files.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ omit diff output for unmerged entries and just show "Unmerged".
4343
-q::
4444
Remain silent even on nonexistent files
4545

46-
Output format
47-
-------------
46+
4847
include::diff-format.txt[]
4948

5049

git-diff-index.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -852,9 +852,9 @@ <h2 id="_options">OPTIONS</h2>
852852
</dd>
853853
</dl></div>
854854
</div>
855-
<h2 id="_output_format">Output format</h2>
855+
<h2 id="_raw_output_format">Raw output format</h2>
856856
<div class="sectionbody">
857-
<div class="para"><p>The output format from "git-diff-index", "git-diff-tree",
857+
<div class="para"><p>The raw output format from "git-diff-index", "git-diff-tree",
858858
"git-diff-files" and "git diff --raw" are very similar.</p></div>
859859
<div class="para"><p>These commands all compare two sets of things; what is
860860
compared differs:</p></div>
@@ -892,6 +892,9 @@ <h2 id="_output_format">Output format</h2>
892892
</p>
893893
</dd>
894894
</dl></div>
895+
<div class="para"><p>The "git-diff-tree" command begins its ouput by printing the hash of
896+
what is being compared. After that, all the commands print one output
897+
line per changed file.</p></div>
895898
<div class="para"><p>An output line is formatted this way:</p></div>
896899
<div class="listingblock">
897900
<div class="content">
@@ -1488,7 +1491,7 @@ <h2 id="_git">GIT</h2>
14881491
</div>
14891492
<div id="footer">
14901493
<div id="footer-text">
1491-
Last updated 2009-07-01 02:30:48 UTC
1494+
Last updated 2009-07-29 08:35:00 UTC
14921495
</div>
14931496
</div>
14941497
</body>

git-diff-index.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ include::diff-options.txt[]
3434
'git-diff-index' say that all non-checked-out files are up
3535
to date.
3636

37-
Output format
38-
-------------
3937
include::diff-format.txt[]
4038

4139
Operating Modes

git-diff-tree.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1427,9 +1427,9 @@ <h2 id="_limiting_output">Limiting Output</h2>
14271427
</div></div>
14281428
<div class="para"><p>in case you care).</p></div>
14291429
</div>
1430-
<h2 id="_output_format">Output format</h2>
1430+
<h2 id="_raw_output_format">Raw output format</h2>
14311431
<div class="sectionbody">
1432-
<div class="para"><p>The output format from "git-diff-index", "git-diff-tree",
1432+
<div class="para"><p>The raw output format from "git-diff-index", "git-diff-tree",
14331433
"git-diff-files" and "git diff --raw" are very similar.</p></div>
14341434
<div class="para"><p>These commands all compare two sets of things; what is
14351435
compared differs:</p></div>
@@ -1467,6 +1467,9 @@ <h2 id="_output_format">Output format</h2>
14671467
</p>
14681468
</dd>
14691469
</dl></div>
1470+
<div class="para"><p>The "git-diff-tree" command begins its ouput by printing the hash of
1471+
what is being compared. After that, all the commands print one output
1472+
line per changed file.</p></div>
14701473
<div class="para"><p>An output line is formatted this way:</p></div>
14711474
<div class="listingblock">
14721475
<div class="content">
@@ -1969,7 +1972,7 @@ <h2 id="_git">GIT</h2>
19691972
</div>
19701973
<div id="footer">
19711974
<div id="footer-text">
1972-
Last updated 2009-07-01 02:30:48 UTC
1975+
Last updated 2009-07-29 08:35:00 UTC
19731976
</div>
19741977
</div>
19751978
</body>

git-diff-tree.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,7 @@ HEAD commits it finds, which is even more interesting.
159159

160160
in case you care).
161161

162-
Output format
163-
-------------
162+
164163
include::diff-format.txt[]
165164

166165

git-diff.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -914,9 +914,9 @@ <h2 id="_options">OPTIONS</h2>
914914
</dd>
915915
</dl></div>
916916
</div>
917-
<h2 id="_output_format">Output format</h2>
917+
<h2 id="_raw_output_format">Raw output format</h2>
918918
<div class="sectionbody">
919-
<div class="para"><p>The output format from "git-diff-index", "git-diff-tree",
919+
<div class="para"><p>The raw output format from "git-diff-index", "git-diff-tree",
920920
"git-diff-files" and "git diff --raw" are very similar.</p></div>
921921
<div class="para"><p>These commands all compare two sets of things; what is
922922
compared differs:</p></div>
@@ -954,6 +954,9 @@ <h2 id="_output_format">Output format</h2>
954954
</p>
955955
</dd>
956956
</dl></div>
957+
<div class="para"><p>The "git-diff-tree" command begins its ouput by printing the hash of
958+
what is being compared. After that, all the commands print one output
959+
line per changed file.</p></div>
957960
<div class="para"><p>An output line is formatted this way:</p></div>
958961
<div class="listingblock">
959962
<div class="content">
@@ -1604,7 +1607,7 @@ <h2 id="_git">GIT</h2>
16041607
</div>
16051608
<div id="footer">
16061609
<div id="footer-text">
1607-
Last updated 2009-07-01 02:30:49 UTC
1610+
Last updated 2009-07-29 08:35:00 UTC
16081611
</div>
16091612
</div>
16101613
</body>

0 commit comments

Comments
 (0)