@@ -41,6 +41,12 @@ UI, Workflows & Features
41
41
the original bug reporter.
42
42
(merge 09ac673788 eb/contacts-reported-by later to maint).
43
43
44
+ * "git rebase", especially when it is run by mistake and ends up
45
+ trying to replay many changes, spent long time in silence. The
46
+ command has been taught to show progress report when it spends
47
+ long time preparing these many changes to replay (which would give
48
+ the user a chance to abort with ^C).
49
+
44
50
45
51
Performance, Internal Implementation, Development Support etc.
46
52
@@ -76,6 +82,11 @@ Performance, Internal Implementation, Development Support etc.
76
82
77
83
* The "ref-store" code reorganization continues.
78
84
85
+ * "git commit" used to discard the index and re-read from the filesystem
86
+ just in case the pre-commit hook has updated it in the middle; this
87
+ has been optimized out when we know we do not run the pre-commit hook.
88
+ (merge 680ee550d7 kw/commit-keep-index-when-pre-commit-is-not-run later to maint).
89
+
79
90
80
91
Also contains various documentation updates and code clean-ups.
81
92
@@ -164,6 +175,19 @@ Fixes since v2.14
164
175
(merge 896dca3ab7 rs/unpack-entry-leakfix later to maint).
165
176
(merge 149d8cbb2e rs/win32-syslog-leakfix later to maint).
166
177
178
+ * "git stash -u" used the contents of the committed version of the
179
+ ".gitignore" file to decide which paths are ignored, even when the
180
+ file has local changes. The command has been taught to instead use
181
+ the locally modified contents.
182
+
183
+ * bash 4.4 or newer gave a warning on NUL byte in command
184
+ substitution done in "git stash"; this has been squelched.
185
+ (merge 5fc92f8828 kd/stash-with-bash-4.4 later to maint).
186
+
187
+ * "git grep -L" and "git grep --quiet -L" reported different exit
188
+ codes; this has been corrected.
189
+ (merge e1f68c66d5 as/grep-quiet-no-match-exit-code-fix later to maint).
190
+
167
191
* Other minor doc, test and build updates and code cleanups.
168
192
(merge 5b114f3bb0 rs/bswap-ubsan-fix later to maint).
169
193
(merge 168e63554c rs/move-array later to maint).
@@ -188,3 +212,9 @@ Fixes since v2.14
188
212
(merge 881529c846 rs/apply-lose-prefix-length later to maint).
189
213
(merge 6355a76802 rs/find-pack-entry-bisection later to maint).
190
214
(merge de3ce210ed rs/merge-microcleanup later to maint).
215
+ (merge 7f0a02be2f ah/doc-empty-string-is-false later to maint).
216
+ (merge 70ec6bd63b rs/t1002-do-not-use-sum later to maint).
217
+ (merge 2456990dfd sb/sha1-file-cleanup later to maint).
218
+ (merge 2aac933c62 hv/t5526-andand-chain-fix later to maint).
219
+ (merge c8d0c4fe9b sb/submodule-parallel-update later to maint).
220
+ (merge 794b7e1674 mg/format-ref-doc-fix later to maint).
0 commit comments