Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-09-19 23:48:25 +0300
committerJunio C Hamano <gitster@pobox.com>2016-09-19 23:48:25 +0300
commit2118cdc7d32448e064a22aee698d304b780c7cec (patch)
tree7d22adb3a8a93b383cb18654acae9f96f5932077 /Documentation/RelNotes/2.11.0.txt
parent4af9a7d344b0e1c3b504c0cfb650dabdb1df1852 (diff)
Third batch for 2.11
This round they are somewhat bigger topics. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/RelNotes/2.11.0.txt')
-rw-r--r--Documentation/RelNotes/2.11.0.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/Documentation/RelNotes/2.11.0.txt b/Documentation/RelNotes/2.11.0.txt
index f4fa57e439..2be6ef1823 100644
--- a/Documentation/RelNotes/2.11.0.txt
+++ b/Documentation/RelNotes/2.11.0.txt
@@ -48,6 +48,17 @@ Performance, Internal Implementation, Development Support etc.
sequencer.c files so that more helper functions in it can be used
by callers that want to handle error conditions themselves.
+ * "git am" has been taught to make an internal call to "git apply"'s
+ innards without spawning the latter as a separate process.
+
+ * The ref-store abstraction was introduced to the refs API so that we
+ can plug in different backends to store references.
+
+ * The "unsigned char sha1[20]" to "struct object_id" conversion
+ continues. Notable changes in this round includes that ce->sha1,
+ i.e. the object name recorded in the cache_entry, turns into an
+ object_id.
+
Also contains various documentation updates and code clean-ups.