Skip to content

Commit ac83bc5

Browse files
committed
Git 2.42-rc0
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 65e25ae commit ac83bc5

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

Documentation/RelNotes/2.42.0.txt

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@ UI, Workflows & Features
3030
is a valid and sensible thing to update a branch at a remote
3131
repository, rather than reconciling with merge/rebase.
3232

33+
* "git blame --contents=file" has been taught to work in a bare
34+
repository.
35+
36+
* "git branch -f X" to repoint the branch X said that X was "checked
37+
out" in another worktree, even when branch X was not and instead
38+
being bisected or rebased. The message was reworded to say the
39+
branch was "in use".
40+
3341

3442
Performance, Internal Implementation, Development Support etc.
3543

@@ -73,6 +81,17 @@ Performance, Internal Implementation, Development Support etc.
7381
* "git branch --list --format=<format>" and friends are taught
7482
a new "%(describe)" placeholder.
7583

84+
* Clarify how to choose the starting point for a new topic in
85+
developer guidance document.
86+
87+
* The implementation of "get_sha1_hex()" that reads a hexadecimal
88+
string that spells a full object name has been extended to cope
89+
with any hash function used in the repository, but the "sha1" in
90+
its name survived. Rename it to get_hash_hex(), a name that is
91+
more consistent within its friends like get_hash_hex_algop().
92+
93+
* Command line parser fix, and a small parse-options API update.
94+
7695

7796
Fixes since v2.41
7897
-----------------
@@ -229,6 +248,10 @@ Fixes since v2.41
229248
such a malformed todo file.
230249
(merge 9645a087c2 ah/sequencer-rewrite-todo-fix later to maint).
231250

251+
* Rewrite the description of giving a custom command to the
252+
submodule.<name>.update configuration variable.
253+
(merge 7cebc5bd78 pv/doc-submodule-update-settings later to maint).
254+
232255
* Other code cleanup, docfix, build fix, etc.
233256
(merge 51f9d2e563 sa/doc-ls-remote later to maint).
234257
(merge c6d26a9dda jk/format-patch-message-id-unleak 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.41.GIT
4+
DEF_VER=v2.42.0-rc0
55

66
LF='
77
'

0 commit comments

Comments
 (0)