@@ -46,8 +46,8 @@ UI, Workflows & Features
46
46
rely on symbolic links and make sharing of objects and refs safer
47
47
by making the borrowee and borrowers aware of each other.
48
48
49
- Consider this as still an experimental feature; the UI will likely
50
- to change.
49
+ Consider this as still an experimental feature; its UI is still
50
+ likely to change.
51
51
52
52
* Tweak the sample "store" backend of the credential helper to honor
53
53
XDG configuration file locations when specified.
@@ -211,6 +211,8 @@ Performance, Internal Implementation, Development Support etc.
211
211
underlying "git fetch" and then learned to use parse-options
212
212
parser.
213
213
214
+ * Clarify in the Makefile a guideline to decide use of USE_NSEC.
215
+
214
216
Also contains various documentation updates and code clean-ups.
215
217
216
218
@@ -487,6 +489,45 @@ notes for details).
487
489
* A minor bugfix when pack bitmap is used with "rev-list --count".
488
490
(merge c8a70d3 jk/rev-list-no-bitmap-while-pruning later to maint).
489
491
492
+ * "git config" failed to update the configuration file when the
493
+ underlying filesystem is incapable of renaming a file that is still
494
+ open.
495
+ (merge 7a64592 kb/config-unmap-before-renaming later to maint).
496
+
497
+ * Avoid possible ssize_t to int truncation.
498
+ (merge 6c8afe4 mh/strbuf-read-file-returns-ssize-t later to maint).
499
+
500
+ * When you say "!<ENTER>" while running say "git log", you'd confuse
501
+ yourself in the resulting shell, that may look as if you took
502
+ control back to the original shell you spawned "git log" from but
503
+ that isn't what is happening. To that new shell, we leaked
504
+ GIT_PAGER_IN_USE environment variable that was meant as a local
505
+ communication between the original "Git" and subprocesses that was
506
+ spawned by it after we launched the pager, which caused many
507
+ "interesting" things to happen, e.g. "git diff | cat" still paints
508
+ its output in color by default.
509
+
510
+ Stop leaking that environment variable to the pager's half of the
511
+ fork; we only need it on "Git" side when we spawn the pager.
512
+ (merge 124b519 jc/unexport-git-pager-in-use-in-pager later to maint).
513
+
514
+ * Abandoning an already applied change in "git rebase -i" with
515
+ "--continue" left CHERRY_PICK_HEAD and confused later steps.
516
+ (merge 0e0aff4 js/rebase-i-clean-up-upon-continue-to-skip later to maint).
517
+
518
+ * We used to ask libCURL to use the most secure authentication method
519
+ available when talking to an HTTP proxy only when we were told to
520
+ talk to one via configuration variables. We now ask libCURL to
521
+ always use the most secure authentication method, because the user
522
+ can tell libCURL to use an HTTP proxy via an environment variable
523
+ without using configuration variables.
524
+ (merge 5841520 et/http-proxyauth later to maint).
525
+
526
+ * A fix to a minor regression to "git fsck" in v2.2 era that started
527
+ complaining about a body-less tag object when it lacks a separator
528
+ empty line after its header to separate it with a non-existent body.
529
+ (merge 84d18c0 jc/fsck-retire-require-eoh later to maint).
530
+
490
531
* Code cleanups and documentation updates.
491
532
(merge 0269f96 mm/usage-log-l-can-take-regex later to maint).
492
533
(merge 64f2589 nd/t1509-chroot-test later to maint).
@@ -521,3 +562,4 @@ notes for details).
521
562
(merge 5330e6e sb/p5310-and-chain later to maint).
522
563
(merge c4ac525 tb/checkout-doc later to maint).
523
564
(merge e479c5f jk/pretty-encoding-doc later to maint).
565
+ (merge 7e837c6 ss/clone-guess-dir-name-simplify later to maint).
0 commit comments