@@ -31,7 +31,6 @@ UI, Workflows & Features
31
31
* "git add -i/-p" learned to honor diff.compactionHeuristic
32
32
experimental knob, so that the user can work on the same hunk split
33
33
as "git diff" output.
34
- (merge 46e3d17 jk/add-i-diff-compact-heuristics later to maint).
35
34
36
35
* "upload-pack" allows a custom "git pack-objects" replacement when
37
36
responding to "fetch/clone" via the uploadpack.packObjectsHook.
@@ -53,7 +52,6 @@ UI, Workflows & Features
53
52
draw text that is to the right of the ancestry-graph section. It
54
53
also now accepts negative N that means the column limit is relative
55
54
to the right border.
56
- (merge 066790d nd/graph-width-padded later to maint).
57
55
58
56
* A careless invocation of "git send-email directory/" after editing
59
57
0001-change.patch with an editor often ends up sending both
@@ -75,6 +73,14 @@ UI, Workflows & Features
75
73
76
74
* A couple of "git svn" updates.
77
75
76
+ * More markings of messages for i18n, with updates to various tests
77
+ to pass GETTEXT_POISON tests.
78
+
79
+ * "git archive" learned to handle files that are larger than 8GB and
80
+ commits far in the future than expressible by the traditional US-TAR
81
+ format.
82
+ (merge 5caeeb8 jk/big-and-future-archive-tar later to maint).
83
+
78
84
79
85
Performance, Internal Implementation, Development Support etc.
80
86
@@ -86,7 +92,6 @@ Performance, Internal Implementation, Development Support etc.
86
92
connection from a client that silently goes offline can hang around
87
93
for a long time, wasting resources. The socket-level KEEPALIVE has
88
94
been enabled to allow the OS to notice such failed connections.
89
- (merge a43b68a ew/daemon-socket-keepalive later to maint).
90
95
91
96
* "git upload-pack" command has been updated to use the parse-options
92
97
API.
@@ -112,19 +117,16 @@ Performance, Internal Implementation, Development Support etc.
112
117
113
118
* The ownership rule for the piece of memory that hold references to
114
119
be fetched in "git fetch" was screwy, which has been cleaned up.
115
- (merge b7410f6 km/fetch-do-not-free-remote-name later to maint).
116
120
117
121
* "git bisect" makes an internal call to "git diff-tree" when
118
122
bisection finds the culprit, but this call did not initialize the
119
123
data structure to pass to the diff-tree API correctly.
120
- (merge 43ec550 jk/bisect-show-tree later to maint).
121
124
122
125
* Further preparatory clean-up for "worktree" feature continues.
123
126
(merge 0409e0b nd/worktree-cleanup-post-head-protection later to maint).
124
127
125
128
* Formats of the various data (and how to validate them) where we use
126
129
GPG signature have been documented.
127
- (merge cc6ee97 mg/signature-doc later to maint).
128
130
129
131
* A new run-command API function pipe_command() is introduced to
130
132
sanely feed data to the standard input while capturing data from
@@ -155,18 +157,15 @@ notes for details).
155
157
--no-color or with --color=auto when the output is not connected to
156
158
a tty; this was corrected to make the format truly behave as
157
159
"auto".
158
- (merge b15a3e0 et/pretty-format-c-auto later to maint).
159
160
160
161
* "git rev-list --count" whose walk-length is limited with "-n"
161
162
option did not work well with the counting optimized to look at the
162
163
bitmap index.
163
- (merge fb85db8 jk/rev-list-count-with-bitmap later to maint).
164
164
165
165
* "git show -W" (extend hunks to cover the entire function, delimited
166
166
by lines that match the "funcname" pattern) used to show the entire
167
167
file when a change added an entire function at the end of the file,
168
168
which has been fixed.
169
- (merge 6f8d9bc rs/xdiff-hunk-with-func-line later to maint).
170
169
171
170
* The documentation set has been updated so that literal commands,
172
171
configuration variables and environment variables are consistently
@@ -209,16 +208,13 @@ notes for details).
209
208
that recurses down to submodules by forcing the submodules to also
210
209
be cloned shallowly, which many server instances that host upstream
211
210
of the submodules are not prepared for.
212
- (merge 18a74a0 sb/clone-shallow-passthru later to maint).
213
211
214
212
* Fix unnecessarily waste in the idiomatic use of ': ${VAR=default}'
215
213
to set the default value, without enclosing it in double quotes.
216
- (merge 01247e0 lc/shell-default-value-noexpand later to maint).
217
214
218
215
* Some platform-specific code had non-ANSI strict declarations of C
219
216
functions that do not take any parameters, which has been
220
217
corrected.
221
- (merge 0767172 js/mingw-parameter-less-c-functions later to maint).
222
218
223
219
* The internal code used to show local timezone offset is not
224
220
prepared to handle timestamps beyond year 2100, and gave a
@@ -230,23 +226,19 @@ notes for details).
230
226
* One among four invocations of readlink(1) in our test suite has
231
227
been rewritten so that the test can run on systems without the
232
228
command (others are in valgrind test framework and t9802).
233
- (merge d2addc3 ak/t7800-wo-readlink later to maint).
234
229
235
230
* t/perf needs /usr/bin/time with GNU extension; the invocation of it
236
231
is updated to "gtime" on Darwin.
237
- (merge e3efa94 js/perf-on-apple later to maint).
238
232
239
233
* A bug, which caused "git p4" while running under verbose mode to
240
234
report paths that are omitted due to branch prefix incorrectly, has
241
235
been fixed; the command said "Ignoring file outside of prefix" for
242
236
paths that are _inside_.
243
- (merge 09667d0 ao/p4-has-branch-prefix-fix later to maint).
244
237
245
238
* The top level documentation "git help git" still pointed at the
246
239
documentation set hosted at now-defunct google-code repository.
247
240
Update it to point to https://git.github.io/htmldocs/git.html
248
241
instead.
249
- (merge f793582 jn/preformatted-doc-url later to maint).
250
242
251
243
* A helper function that takes the contents of a commit object and
252
244
finds its subject line did not ignore leading blank lines, as is
@@ -259,10 +251,39 @@ notes for details).
259
251
Windows, which no longer is the case for the past few years.
260
252
(merge 3d0a833 js/color-on-windows-comment later to maint).
261
253
254
+ * "gc.autoPackLimit" when set to 1 should not trigger a repacking
255
+ when there is only one pack, but the code counted poorly and did
256
+ so.
257
+ (merge 5f4e3bf ew/gc-auto-pack-limit-fix later to maint).
258
+
259
+ * Add a test to specify the desired behaviour that currently is not
260
+ available in "git rebase -Xsubtree=...".
261
+ (merge 5f35900 dg/subtree-rebase-test later to maint).
262
+
263
+ * More mark-up updates to typeset strings that are expected to
264
+ literally typed by the end user in fixed-width font.
265
+ (merge 661c3e9 mm/doc-tt later to maint).
266
+
267
+ * "git commit --amend --allow-empty-message -S" for a commit without
268
+ any message body could have misidentified where the header of the
269
+ commit object ends.
270
+ (merge 3324dd8 js/sign-empty-commit-fix later to maint).
271
+
272
+ * "git rebase -i --autostash" did not restore the auto-stashed change
273
+ when the operation was aborted.
274
+ (merge 33ba9c6 ps/rebase-i-auto-unstash-upon-abort later to maint).
275
+
276
+ * Git does not know what the contents in the index should be for a
277
+ path added with "git add -N" yet, so "git grep --cached" should not
278
+ show hits (or show lack of hits, with -L) in such a path, but that
279
+ logic does not apply to "git grep", i.e. searching in the working
280
+ tree files. But we did so by mistake, which has been corrected.
281
+ (merge b8e47d1 nd/ita-cleanup later to maint).
282
+
262
283
* Other minor clean-ups and documentation updates
263
284
(merge e51b0df pb/commit-editmsg-path later to maint).
264
285
(merge b333d0d jk/send-pack-stdio later to maint).
265
286
(merge fcf0fe9 lf/sideband-returns-void later to maint).
266
- (merge 5819c2e sb/t5614-modernize later to maint).
267
- (merge fe0537a cb/t7810-test-label-fix later to maint).
268
- (merge 412b9a1 jc/t2300-setup later to maint).
287
+ (merge c2691e2 ah/unpack-trees-advice-messages later to maint).
288
+ (merge 82f6178 nd/doc-new-command later to maint).
289
+ (merge fa90ab4 js/t3404-grammo-fix later to maint).
0 commit comments