@@ -16,6 +16,8 @@ Fixes since v1.6.0.2
16
16
* "git rebase -i" now honors the pre-rebase hook, just like the
17
17
other rebase implementations "git rebase" and "git rebase -m".
18
18
19
+ * "git rebase -i" incorrectly aborted when there is no commit to replay.
20
+
19
21
* Behaviour of "git diff --quiet" was inconsistent with "diff --exit-code"
20
22
with the output redirected to /dev/null.
21
23
@@ -29,6 +31,9 @@ Fixes since v1.6.0.2
29
31
* New config "diff.*.xfuncname" exposes extended regular expressions
30
32
for user specified hunk header patterns.
31
33
34
+ * "git index-pack" was recently broken and mishandled objects added by
35
+ thin-pack completion processing under memory pressure.
36
+
32
37
* "git stash apply sash@{1}" was fixed to error out. Prior versions
33
38
would have applied stash@{0} incorrectly.
34
39
@@ -56,9 +61,15 @@ Fixes since v1.6.0.2
56
61
* "git merge" once again removes directories after the last file has
57
62
been removed from it during the merge.
58
63
64
+ * "git merge" did not allocate enough memory for the structure itself when
65
+ enumerating the parents of the resulting commit.
66
+
59
67
* "git blame -C -C" no longer segfaults while trying to pass blame if
60
68
it encounters a submodule reference.
61
69
70
+ * "git rm" incorrectly claimed that you have local modifications when a
71
+ path was merely stat-dirty.
72
+
62
73
* "git svn" fixed to display an error message when 'set-tree' failed,
63
74
instead of a Perl compile error.
64
75
@@ -68,10 +79,16 @@ Fixes since v1.6.0.2
68
79
* The "git commit" error message when there are still unmerged
69
80
files present was clarified to match "git write-tree".
70
81
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
+
71
87
* Some segfaults due to uncaught NULL pointers were fixed in multiple
72
88
tools such as apply, reset, update-index.
73
89
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.
75
92
76
93
* "Git.pm" tests relied on unnecessarily more recent version of Perl.
77
94
@@ -90,6 +107,6 @@ Many other documentation updates.
90
107
91
108
--
92
109
exec >/var/tmp/1
93
- O=v1.6.0.2-76-gd70b4a8
110
+ O=v1.6.0.2-95-g72d404d
94
111
echo O=$(git describe maint)
95
112
git shortlog --no-merges $O..maint
0 commit comments