summaryrefslogtreecommitdiff
path: root/Documentation/RelNotes
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-10-23 05:54:30 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-10-23 05:54:30 (GMT)
commitc52ca88430e6ec7c834af38720295070d8a1e330 (patch)
treeed5b1a08d22f95264fbdcf42d76e5e439b704aa6 /Documentation/RelNotes
parent4843cdefe3f30d19c1b2cf601522152c1413459a (diff)
parentfc849d8d6b90e5c1e0c37bc0d60dd92b2fe7347f (diff)
downloadgit-c52ca88430e6ec7c834af38720295070d8a1e330.zip
git-c52ca88430e6ec7c834af38720295070d8a1e330.tar.gz
git-c52ca88430e6ec7c834af38720295070d8a1e330.tar.bz2
Sync with 2.14.3
Diffstat (limited to 'Documentation/RelNotes')
-rw-r--r--Documentation/RelNotes/2.14.3.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/Documentation/RelNotes/2.14.3.txt b/Documentation/RelNotes/2.14.3.txt
index 61f569a..977c9e8 100644
--- a/Documentation/RelNotes/2.14.3.txt
+++ b/Documentation/RelNotes/2.14.3.txt
@@ -72,4 +72,28 @@ Fixes since v2.14.2
them as the patch created internally by "git add -p" were colored
(heh) and made unusable. This has been fixed.
+ * "git branch -M a b" while on a branch that is completely unrelated
+ to either branch a or branch b misbehaved when multiple worktree
+ was in use. This has been fixed.
+
+ * "git fast-export" with -M/-C option issued "copy" instruction on a
+ path that is simultaneously modified, which was incorrect.
+
+ * The checkpoint command "git fast-import" did not flush updates to
+ refs and marks unless at least one object was created since the
+ last checkpoint, which has been corrected, as these things can
+ happen without any new object getting created.
+
+ * The scripts to drive TravisCI has been reorganized and then an
+ optimization to avoid spending cycles on a branch whose tip is
+ tagged has been implemented.
+
+ * "git fetch <there> <src>:<dst>" allows an object name on the <src>
+ side when the other side accepts such a request since Git v2.5, but
+ the documentation was left stale.
+
+ * A regression in 2.11 that made the code to read the list of
+ alternate object stores overrun the end of the string has been
+ fixed.
+
Also contains various documentation updates and code clean-ups.