@@ -37,6 +37,16 @@ UI, Workflows & Features
37
37
placed by the sequencer machinery have been made more readable by
38
38
humans.
39
39
40
+ * The "--batch-size" option of "git multi-pack-index repack" command
41
+ is now used to specify that very small packfiles are collected into
42
+ one until the total size roughly exceeds it.
43
+
44
+ * The recent addition of SHA-256 support is marked as experimental in
45
+ the documentation.
46
+
47
+ * "git fetch" learned --no-write-fetch-head option to avoid writing
48
+ the FETCH_HEAD file.
49
+
40
50
41
51
Performance, Internal Implementation, Development Support etc.
42
52
@@ -183,6 +193,29 @@ Fixes since v2.28
183
193
* "unlink" emulation on MinGW has been optimized.
184
194
(merge 680e0b4524 jh/mingw-unlink later to maint).
185
195
196
+ * The purpose of "git init --separate-git-dir" is to initialize a
197
+ new project with the repository separate from the working tree,
198
+ or, in the case of an existing project, to move the repository
199
+ (the .git/ directory) out of the working tree. It does not make
200
+ sense to use --separate-git-dir with a bare repository for which
201
+ there is no working tree, so disallow its use with bare
202
+ repositories.
203
+ (merge ccf236a23a es/init-no-separate-git-dir-in-bare later to maint).
204
+
205
+ * "ls-files -o" mishandled the top-level directory of another git
206
+ working tree that hangs in the current git working tree.
207
+ (merge ab282aa548 en/dir-nonbare-embedded later to maint).
208
+
209
+ * Fix some incorrect UNLEAK() annotations.
210
+ (merge 3e19816dc0 jk/unleak-fixes later to maint).
211
+
212
+ * Use more buffered I/O where we used to call many small write(2)s.
213
+ (merge a698d67b08 rs/more-buffered-io later to maint).
214
+
215
+ * The patch-id computation did not ignore the "incomplete last line"
216
+ marker like whitespaces.
217
+ (merge 82a62015a7 rs/patch-id-with-incomplete-line later to maint).
218
+
186
219
* Other code cleanup, docfix, build fix, etc.
187
220
(merge 84544f2ea3 sk/typofixes later to maint).
188
221
(merge b17f411ab5 ar/help-guides-doc later to maint).
@@ -202,3 +235,5 @@ Fixes since v2.28
202
235
(merge a831908599 rs/preserve-merges-unused-code-removal later to maint).
203
236
(merge 6dfefe70a9 jb/commit-graph-doc-fix later to maint).
204
237
(merge 847b37271e pb/set-url-docfix later to maint).
238
+ (merge 748f733d54 mt/checkout-entry-dead-code-removal later to maint).
239
+ (merge ce820cbd58 dl/subtree-docs later to maint).
0 commit comments