Skip to content

Commit 527b9d7

Browse files
committed
Git 1.6.5.7
Signed-off-by: Junio C Hamano <[email protected]>
1 parent b3100fd commit 527b9d7

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

Documentation/RelNotes-1.6.5.7.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Git v1.6.5.7 Release Notes
2+
==========================
3+
4+
Fixes since v1.6.5.6
5+
--------------------
6+
7+
* If a user specifies a color for a <slot> (i.e. a class of things to show
8+
in a particular color) that is known only by newer versions of git
9+
(e.g. "color.diff.func" was recently added for upcoming 1.6.6 release),
10+
an older version of git should just ignore them. Instead we diagnosed
11+
it as an error.
12+
13+
* With help.autocorrect set to non-zero value, the logic to guess typoes
14+
in the subcommand name misfired and ran a random nonsense command.
15+
16+
* If a command is run with an absolute path as a pathspec inside a bare
17+
repository, e.g. "rev-list HEAD -- /home", the code tried to run
18+
strlen() on NULL, which is the result of get_git_work_tree(), and
19+
segfaulted.

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.6/git.html[documentation for release 1.6.5.6]
46+
* link:v1.6.5.7/git.html[documentation for release 1.6.5.7]
4747

4848
* release notes for
49+
link:RelNotes-1.6.5.7.txt[1.6.5.7],
4950
link:RelNotes-1.6.5.6.txt[1.6.5.6],
5051
link:RelNotes-1.6.5.5.txt[1.6.5.5],
5152
link:RelNotes-1.6.5.4.txt[1.6.5.4],

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.6
4+
DEF_VER=v1.6.5.7
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.6.txt
1+
Documentation/RelNotes-1.6.5.7.txt

0 commit comments

Comments
 (0)