@@ -99,6 +99,15 @@ UI, Workflows & Features
99
99
* The approxidate parser learns to parse seconds with fraction and
100
100
ignore fractional part.
101
101
102
+ * The userdiff patterns for Markdown documents have been added.
103
+
104
+ * The sparse-checkout patterns have been forbidden from excluding all
105
+ paths, leaving an empty working tree, for a long time. This
106
+ limitation has been lifted.
107
+
108
+ * "git restore --staged --worktree" now defaults to take the contents
109
+ out of "HEAD", instead of erring out.
110
+
102
111
103
112
Performance, Internal Implementation, Development Support etc.
104
113
@@ -372,6 +381,45 @@ Fixes since v2.26
372
381
correctly honor the core.sharedRepository settings and some were
373
382
left read-write.
374
383
384
+ * In error messages that "git switch" mentions its option to create a
385
+ new branch, "-b/-B" options were shown, where "-c/-C" options
386
+ should be, which has been corrected.
387
+ (merge 7c16ef7577 dl/switch-c-option-in-error-message later to maint).
388
+
389
+ * With the recent tightening of the code that is used to parse
390
+ various parts of a URL for use in the credential subsystem, a
391
+ hand-edited credential-store file causes the credential helper to
392
+ die, which is a bit too harsh to the users. Demote the error
393
+ behaviour to just ignore and keep using well-formed lines instead.
394
+ (merge c03859a665 cb/credential-store-ignore-bogus-lines later to maint).
395
+
396
+ * The samples in the credential documentation has been updated to
397
+ make it clear that we depict what would appear in the .git/config
398
+ file, by adding appropriate quotes as needed..
399
+ (merge 177681a07e jk/credential-sample-update later to maint).
400
+
401
+ * "git branch" and other "for-each-ref" variants accepted multiple
402
+ --sort=<key> options in the increasing order of precedence, but it
403
+ had a few breakages around "--ignore-case" handling, and tie-breaking
404
+ with the refname, which have been fixed.
405
+ (merge 7c5045fc18 jk/for-each-ref-multi-key-sort-fix later to maint).
406
+
407
+ * The coding guideline for shell scripts instructed to refer to a
408
+ variable with dollar-sign inside arithmetic expansion to work
409
+ around a bug in old versions of dash, which is a thing of the past.
410
+ Now we are not forbidden from writing $((var+1)).
411
+ (merge 32b5fe7f0e jk/arith-expansion-coding-guidelines later to maint).
412
+
413
+ * The <stdlib.h> header on NetBSD brings in its own definition of
414
+ hmac() function (eek), which conflicts with our own and unrelated
415
+ function with the same name. Our function has been renamed to work
416
+ around the issue.
417
+ (merge 3013118eb8 cb/avoid-colliding-with-netbsd-hmac later to maint).
418
+
419
+ * The basic test did not honor $TEST_SHELL_PATH setting, which has
420
+ been corrected.
421
+ (merge 0555e4af58 cb/t0000-use-the-configured-shell later to maint).
422
+
375
423
* Other code cleanup, docfix, build fix, etc.
376
424
(merge 564956f358 jc/maintain-doc later to maint).
377
425
(merge 7422b2a0a1 sg/commit-slab-clarify-peek later to maint).
@@ -399,3 +447,4 @@ Fixes since v2.26
399
447
(merge 4d9378bfad eb/gitweb-more-trailers later to maint).
400
448
(merge bdccbf7047 mt/doc-worktree-ref later to maint).
401
449
(merge ce9baf234f dl/push-recurse-submodules-fix later to maint).
450
+ (merge 4153274052 bc/doc-credential-helper-value later to maint).
0 commit comments