Skip to content

Commit 080cbc1

Browse files
committed
Git 1.6.5.3
Signed-off-by: Junio C Hamano <[email protected]>
1 parent c6b53c8 commit 080cbc1

File tree

4 files changed

+67
-3
lines changed

4 files changed

+67
-3
lines changed

Documentation/RelNotes-1.6.5.3.txt

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
Git v1.6.5.3 Release Notes
2+
==========================
3+
4+
Fixes since v1.6.5.2
5+
--------------------
6+
7+
* info/grafts file didn't ignore trailing CR at the end of lines.
8+
9+
* Packages generated on newer FC were unreadable by older versions of
10+
RPM as the new default is to use stronger hash.
11+
12+
* output from "git blame" was unreadable when the file ended in an
13+
incomplete line.
14+
15+
* "git add -i/-p" didn't handle deletion of empty files correctly.
16+
17+
* "git clone" takes up to two parameters, but did not complain when
18+
given more arguments than necessary and silently ignored them.
19+
20+
* "git cvsimport" did not read files given as command line arguments
21+
correctly when it is run from a subdirectory.
22+
23+
* "git diff --color-words -U0" didn't work correctly.
24+
25+
* The handling of blank lines at the end of file by "git diff/apply
26+
--whitespace" was inconsistent with the other kinds of errors.
27+
They are now colored, warned against, and fixed the same way as others.
28+
29+
* There was no way to allow blank lines at the end of file without
30+
allowing extra blanks at the end of lines. You can use blank-at-eof
31+
and blank-at-eol whitespace error class to specify them separately.
32+
The old trailing-space error class is now a short-hand to set both.
33+
34+
* "-p" option to "git format-patch" was supposed to suppress diffstat
35+
generation, but it was broken since 1.6.1.
36+
37+
* "git imap-send" did not compile cleanly with newer OpenSSL.
38+
39+
* "git help -a" outside of a git repository was broken.
40+
41+
* "git ls-files -i" was supposed to be inverse of "git ls-files" without -i
42+
with respect to exclude patterns, but it was broken since 1.6.5.2.
43+
44+
* "git ls-remote" outside of a git repository over http was broken.
45+
46+
* "git rebase -i" gave bogus error message when the command word was
47+
misspelled.
48+
49+
* "git receive-pack" that is run in response to "git push" did not run
50+
garbage collection nor update-server-info, but in larger hosting sites,
51+
these almost always need to be run. To help site administrators, the
52+
command now runs "gc --auto" and "u-s-i" by setting receive.autogc
53+
and receive.updateserverinfo configuration variables, respectively.
54+
55+
* Release notes spelled the package name with incorrect capitalization.
56+
57+
* "gitweb" did not escape non-ascii characters correctly in the URL.
58+
59+
* "gitweb" showed "patch" link even for merge commits.
60+
61+
* "gitweb" showed incorrect links for blob line numbers in pathinfo mode.
62+
63+
Other minor documentation updates are included.

Documentation/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.6.5.2/git.html[documentation for release 1.6.5.2]
46+
* link:v1.6.5.3/git.html[documentation for release 1.6.5.3]
4747

4848
* release notes for
49+
link:RelNotes-1.6.5.3.txt[1.6.5.3],
4950
link:RelNotes-1.6.5.2.txt[1.6.5.2],
5051
link:RelNotes-1.6.5.1.txt[1.6.5.1],
5152
link:RelNotes-1.6.5.txt[1.6.5].

GIT-VERSION-GEN

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
GVF=GIT-VERSION-FILE
4-
DEF_VER=v1.6.5.2
4+
DEF_VER=v1.6.5.3
55

66
LF='
77
'

RelNotes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Documentation/RelNotes-1.6.5.2.txt
1+
Documentation/RelNotes-1.6.5.3.txt

0 commit comments

Comments
 (0)