Skip to content

Commit addfb21

Browse files
committed
Git 2.3.0-rc0
Signed-off-by: Junio C Hamano <[email protected]>
1 parent def6dd9 commit addfb21

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

Documentation/RelNotes/2.3.0.txt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,15 @@ UI, Workflows & Features
7474

7575
Performance, Internal Implementation, Development Support etc.
7676

77+
* Earlier we made "rev-list --object-edge" more aggressively list the
78+
objects at the edge commits, in order to reduce number of objects 
79+
fetched into a shallow repository, but the change affected cases
80+
other than "fetching into a shallow repository" and made it
81+
unusably slow (e.g. fetching into a normal repository should not
82+
have to suffer the overhead from extra processing). Limit it to a
83+
more specific case by introducing --objects-edge-aggressive, a new
84+
option to rev-list.
85+
7786
* Squelched useless compiler warnings on Mac OS X regarding the
7887
crypto API.
7988

@@ -113,6 +122,14 @@ Unless otherwise noted, all the fixes since v2.2 in the maintenance
113122
track are contained in this release (see the maintenance releases'
114123
notes for details).
115124

125+
* The logic in "git bisect bad HEAD" etc. to avoid forcing the test
126+
of the common ancestor of bad and good commits was broken.
127+
(merge 07913d5 cc/bisect-rev-parsing later to maint).
128+
129+
* "git checkout-index --temp=$target $path" did not work correctly
130+
for paths outside the current subdirectory in the project.
131+
(merge 74c4de5 es/checkout-index-temp later to maint).
132+
116133
* The report from "git checkout" on a branch that builds on another
117134
local branch by setting its branch.*.merge to branch name (not a
118135
full refname) incorrectly said that the upstream is gone.

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.2.0.GIT
4+
DEF_VER=v2.3.0-rc0
55

66
LF='
77
'

0 commit comments

Comments
 (0)