@@ -16,6 +16,8 @@ Fixes since v1.6.0.2
1616* "git rebase -i" now honors the pre-rebase hook, just like the
1717 other rebase implementations "git rebase" and "git rebase -m".
1818
19+ * "git rebase -i" incorrectly aborted when there is no commit to replay.
20+
1921* Behaviour of "git diff --quiet" was inconsistent with "diff --exit-code"
2022 with the output redirected to /dev/null.
2123
@@ -29,6 +31,9 @@ Fixes since v1.6.0.2
2931* New config "diff.*.xfuncname" exposes extended regular expressions
3032 for user specified hunk header patterns.
3133
34+ * "git index-pack" was recently broken and mishandled objects added by
35+ thin-pack completion processing under memory pressure.
36+
3237* "git stash apply sash@{1}" was fixed to error out. Prior versions
3338 would have applied stash@{0} incorrectly.
3439
@@ -56,9 +61,15 @@ Fixes since v1.6.0.2
5661* "git merge" once again removes directories after the last file has
5762 been removed from it during the merge.
5863
64+ * "git merge" did not allocate enough memory for the structure itself when
65+ enumerating the parents of the resulting commit.
66+
5967* "git blame -C -C" no longer segfaults while trying to pass blame if
6068 it encounters a submodule reference.
6169
70+ * "git rm" incorrectly claimed that you have local modifications when a
71+ path was merely stat-dirty.
72+
6273* "git svn" fixed to display an error message when 'set-tree' failed,
6374 instead of a Perl compile error.
6475
@@ -68,10 +79,16 @@ Fixes since v1.6.0.2
6879* The "git commit" error message when there are still unmerged
6980 files present was clarified to match "git write-tree".
7081
82+ * "git init" was confused when core.bare or core.sharedRepository are set
83+ in system or user global configuration file by mistake. When --bare or
84+ --shared is given from the command line, these now override such
85+ settings made outside the repositories.
86+
7187* Some segfaults due to uncaught NULL pointers were fixed in multiple
7288 tools such as apply, reset, update-index.
7389
74- * Solaris builds now default to OLD_ICONV=1 to avoid compile warnings.
90+ * Solaris builds now default to OLD_ICONV=1 to avoid compile warnings;
91+ Solaris 8 does not define NEEDS_LIBICONV by default.
7592
7693* "Git.pm" tests relied on unnecessarily more recent version of Perl.
7794
@@ -90,6 +107,6 @@ Many other documentation updates.
90107
91108--
92109exec >/var/tmp/1
93- O=v1.6.0.2-76-gd70b4a8
110+ O=v1.6.0.2-95-g72d404d
94111echo O=$(git describe maint)
95112git shortlog --no-merges $O..maint
0 commit comments