@@ -67,6 +67,9 @@ UI, Workflows & Features
67
67
ref by specifying a raw object name from the command line when the
68
68
server side supports this feature.
69
69
70
+ * Output from "git log --graph" works better with submodule log
71
+ output now.
72
+
70
73
* "git count-objects -v" learned to report leftover temporary
71
74
packfiles and other garbage in the object store.
72
75
@@ -160,6 +163,28 @@ Unless otherwise noted, all the fixes since v1.8.2 in the maintenance
160
163
track are contained in this release (see release notes to them for
161
164
details).
162
165
166
+ * Perl scripts like "git-svn" closed (not redirecting to /dev/null)
167
+ the standard error stream, which is not a very smart thing to do.
168
+ Later open may return file descriptor #2 for unrelated purpose, and
169
+ error reporting code may write into them.
170
+ (merge a749c0b tr/perl-keep-stderr-open later to maint).
171
+
172
+ * "git show-branch" was not prepared to show a very long run of
173
+ ancestor operators e.g. foobar^2~2^2^2^2...^2~4 correctly.
174
+ (merge aaa07e3 jk/show-branch-strbuf later to maint).
175
+
176
+ * "git diff --diff-algorithm algo" is also understood as "git diff
177
+ --diff-algorithm=algo".
178
+ (merge 0895c6d jk/diff-algo-finishing-touches later to maint).
179
+
180
+ * The new core.commentchar configuration was not applied to a few
181
+ places.
182
+ (merge 89c3bbd rt/commentchar-fmt-merge-msg later to maint).
183
+
184
+ * "git bundle" did not like a bundle created using a commit without
185
+ any message as its one of the prerequistes.
186
+ (merge 5446e33 lf/bundle-with-tip-wo-message later to maint).
187
+
163
188
* "git log -S/-G" started paying attention to textconv filter, but
164
189
there was no way to disable this. Make it honor --no-textconv
165
190
option.
0 commit comments