Skip to content

Commit d592233

Browse files
committed
Prepare for 2.30.1
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent b778c1e commit d592233

File tree

3 files changed

+49
-2
lines changed

3 files changed

+49
-2
lines changed

Documentation/RelNotes/2.30.1.txt

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
Git v2.30.1 Release Notes
2+
=========================
3+
4+
This release is primarily to merge fixes accumulated on the 'master'
5+
front to prepare for 2.31 release that are still relevant to 2.30.x
6+
maintenance track.
7+
8+
Fixes since v2.30
9+
-----------------
10+
11+
* "git fetch --recurse-submodules" failed to update a submodule
12+
when it has an uninitialized (hence of no interest to the user)
13+
sub-submodule, which has been corrected.
14+
15+
* Command line error of "git rebase" are diagnosed earlier.
16+
17+
* "git stash" did not work well in a sparsely checked out working
18+
tree.
19+
20+
* Some tests expect that "ls -l" output has either '-' or 'x' for
21+
group executable bit, but setgid bit can be inherited from parent
22+
directory and make these fields 'S' or 's' instead, causing test
23+
failures.
24+
25+
* "git for-each-repo --config=<var> <cmd>" should not run <cmd> for
26+
any repository when the configuration variable <var> is not defined
27+
even once.
28+
29+
* "git mergetool --tool-help" was broken in 2.29 and failed to list
30+
all the available tools.
31+
32+
* Fix for procedure to building CI test environment for mac.
33+
34+
* Newline characters in the host and path part of git:// URL are
35+
now forbidden.
36+
37+
* When more than one commit with the same patch ID appears on one
38+
side, "git log --cherry-pick A...B" did not exclude them all when a
39+
commit with the same patch ID appears on the other side. Now it
40+
does.
41+
42+
* Documentation for "git fsck" lost stale bits that has become
43+
incorrect.
44+
45+
* Doc for packfile URI feature has been clarified.
46+
47+
Also contains minor documentation updates and code clean-ups.

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.30.0
4+
DEF_VER=v2.30.1pre
55

66
LF='
77
'

RelNotes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Documentation/RelNotes/2.30.0.txt
1+
Documentation/RelNotes/2.30.1.txt

0 commit comments

Comments
 (0)