]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/RelNotes/1.6.5.7.txt
Git 2.24-rc2
[thirdparty/git.git] / Documentation / RelNotes / 1.6.5.7.txt
CommitLineData
527b9d70
JH
1Git v1.6.5.7 Release Notes
2==========================
3
4Fixes 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
22e5e58a 13* With help.autocorrect set to non-zero value, the logic to guess typos
527b9d70
JH
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.