summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-01-12 22:12:42 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-01-12 22:12:42 (GMT)
commitaddfb21a94fb4e6b9d07b270f7bb3748767a8f38 (patch)
tree2a52c625bc05bb37e48cd47b4242c46e1391cbcd /Documentation
parentdef6dd9bc67725f3d35d1a18f67c395c107cee0a (diff)
downloadgit-addfb21a94fb4e6b9d07b270f7bb3748767a8f38.zip
git-addfb21a94fb4e6b9d07b270f7bb3748767a8f38.tar.gz
git-addfb21a94fb4e6b9d07b270f7bb3748767a8f38.tar.bz2
Git 2.3.0-rc0v2.3.0-rc0
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/RelNotes/2.3.0.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/RelNotes/2.3.0.txt b/Documentation/RelNotes/2.3.0.txt
index 7f25bbf..72db8d2 100644
--- a/Documentation/RelNotes/2.3.0.txt
+++ b/Documentation/RelNotes/2.3.0.txt
@@ -74,6 +74,15 @@ UI, Workflows & Features
Performance, Internal Implementation, Development Support etc.
+ * Earlier we made "rev-list --object-edge" more aggressively list the
+ objects at the edge commits, in order to reduce number of objects 
+ fetched into a shallow repository, but the change affected cases
+ other than "fetching into a shallow repository" and made it
+ unusably slow (e.g. fetching into a normal repository should not
+ have to suffer the overhead from extra processing). Limit it to a
+ more specific case by introducing --objects-edge-aggressive, a new
+ option to rev-list.
+
* Squelched useless compiler warnings on Mac OS X regarding the
crypto API.
@@ -113,6 +122,14 @@ Unless otherwise noted, all the fixes since v2.2 in the maintenance
track are contained in this release (see the maintenance releases'
notes for details).
+ * The logic in "git bisect bad HEAD" etc. to avoid forcing the test
+ of the common ancestor of bad and good commits was broken.
+ (merge 07913d5 cc/bisect-rev-parsing later to maint).
+
+ * "git checkout-index --temp=$target $path" did not work correctly
+ for paths outside the current subdirectory in the project.
+ (merge 74c4de5 es/checkout-index-temp later to maint).
+
* The report from "git checkout" on a branch that builds on another
local branch by setting its branch.*.merge to branch name (not a
full refname) incorrectly said that the upstream is gone.