File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -72,4 +72,28 @@ Fixes since v2.14.2
72
72
them as the patch created internally by "git add -p" were colored
73
73
(heh) and made unusable. This has been fixed.
74
74
75
+ * "git branch -M a b" while on a branch that is completely unrelated
76
+ to either branch a or branch b misbehaved when multiple worktree
77
+ was in use. This has been fixed.
78
+
79
+ * "git fast-export" with -M/-C option issued "copy" instruction on a
80
+ path that is simultaneously modified, which was incorrect.
81
+
82
+ * The checkpoint command "git fast-import" did not flush updates to
83
+ refs and marks unless at least one object was created since the
84
+ last checkpoint, which has been corrected, as these things can
85
+ happen without any new object getting created.
86
+
87
+ * The scripts to drive TravisCI has been reorganized and then an
88
+ optimization to avoid spending cycles on a branch whose tip is
89
+ tagged has been implemented.
90
+
91
+ * "git fetch <there> <src>:<dst>" allows an object name on the <src>
92
+ side when the other side accepts such a request since Git v2.5, but
93
+ the documentation was left stale.
94
+
95
+ * A regression in 2.11 that made the code to read the list of
96
+ alternate object stores overrun the end of the string has been
97
+ fixed.
98
+
75
99
Also contains various documentation updates and code clean-ups.
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
3
3
GVF=GIT-VERSION-FILE
4
- DEF_VER=v2.14.2
4
+ DEF_VER=v2.14.3
5
5
6
6
LF='
7
7
'
You can’t perform that action at this time.
0 commit comments