.gitignore: "git-verify-commit" is a generated file
[git.git] / Documentation / RelNotes / 1.6.5.7.txt
blobdc5302c21cd2108a175235bc22efb0debac29670
1 Git v1.6.5.7 Release Notes
2 ==========================
4 Fixes since v1.6.5.6
5 --------------------
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.
13 * With help.autocorrect set to non-zero value, the logic to guess typos
14   in the subcommand name misfired and ran a random nonsense command.
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.