Skip to content

Commit efcab5b

Browse files
committed
Git 2.27-rc0
Signed-off-by: Junio C Hamano <[email protected]>
1 parent d98abce commit efcab5b

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

Documentation/RelNotes/2.27.0.txt

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,13 @@ UI, Workflows & Features
108108
* "git restore --staged --worktree" now defaults to take the contents
109109
out of "HEAD", instead of erring out.
110110

111+
* "git p4" learned to recover from a (broken) state where a directory
112+
and a file are recorded at the same path in the Perforce repository
113+
the same way as their clients do.
114+
115+
* "git multi-pack-index repack" has been taught to honor some
116+
repack.* configuration variables.
117+
111118

112119
Performance, Internal Implementation, Development Support etc.
113120

@@ -167,6 +174,10 @@ Performance, Internal Implementation, Development Support etc.
167174
* Instead of always building all branches at GitHub via Actions,
168175
users can specify which branches to build.
169176

177+
* Codepaths that show progress meter have been taught to also use the
178+
start_progress() and the stop_progress() calls as a "region" to be
179+
traced.
180+
170181

171182
Fixes since v2.26
172183
-----------------
@@ -444,6 +455,21 @@ Fixes since v2.26
444455
e.g. auto-follow tags.
445456
(merge 08450ef791 cc/upload-pack-v2-fetch-fix later to maint).
446457

458+
* "git bisect replay" had trouble with input files when they used
459+
CRLF line ending, which has been corrected.
460+
(merge 6c722cbe5a cw/bisect-replay-with-dos later to maint).
461+
462+
* "rebase -i" segfaulted when rearranging a sequence that has a
463+
fix-up that applies another fix-up (which may or may not be a
464+
fix-up of yet another step).
465+
(merge 02471e7e20 js/rebase-autosquash-double-fixup-fix later to maint).
466+
467+
* "git fsck" ensures that the paths recorded in tree objects are
468+
sorted and without duplicates, but it failed to notice a case where
469+
a blob is followed by entries that sort before a tree with the same
470+
name. This has been corrected.
471+
(merge 9068cfb20f rs/fsck-duplicate-names-in-trees later to maint).
472+
447473
* Other code cleanup, docfix, build fix, etc.
448474
(merge 564956f358 jc/maintain-doc later to maint).
449475
(merge 7422b2a0a1 sg/commit-slab-clarify-peek later to maint).
@@ -472,3 +498,4 @@ Fixes since v2.26
472498
(merge bdccbf7047 mt/doc-worktree-ref later to maint).
473499
(merge ce9baf234f dl/push-recurse-submodules-fix later to maint).
474500
(merge 4153274052 bc/doc-credential-helper-value later to maint).
501+
(merge 5c7bb0146e jc/codingstyle-compare-with-null later to maint).

GIT-VERSION-GEN

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
GVF=GIT-VERSION-FILE
4-
DEF_VER=v2.26.GIT
4+
DEF_VER=v2.27.0-rc0
55

66
LF='
77
'

0 commit comments

Comments
 (0)