@@ -53,9 +53,6 @@ UI, Workflows & Features
53
53
* The "fmt-merge-msg" command learns to list the primary contributors
54
54
involved in the side topic you are merging.
55
55
56
- * The cases "git push" fails due to non-ff can be broken into three
57
- categories; each case is given a separate advise message.
58
-
59
56
* "git rebase" learned to optionally keep commits that do not
60
57
introduce any change in the original history.
61
58
@@ -94,21 +91,11 @@ Performance and Internal Implementation (please report possible regressions)
94
91
95
92
* "git apply" had some memory leaks plugged.
96
93
97
- * "git repack" used to write out unreachable objects as loose objects
98
- when repacking, even if such loose objects will immediately pruned
99
- due to its age.
100
-
101
94
* Setting up a revision traversal with many starting points was
102
95
inefficient as these were placed in a date-order priority queue
103
96
one-by-one. Now they are collected in the queue unordered first,
104
97
and sorted immediately before getting used.
105
98
106
- * "git rev-parse --show-prefix" used to emit nothing when run at the
107
- top-level of the working tree, but now it gives a blank line.
108
-
109
- * Minor memory leak during unpack_trees (hence "merge" and "checkout"
110
- to check out another branch) has been plugged.
111
-
112
99
* More lower-level commands learned to use the streaming API to read
113
100
from the object store without keeping everything in core.
114
101
@@ -129,6 +116,14 @@ Unless otherwise noted, all the fixes since v1.7.10 in the maintenance
129
116
releases are contained in this release (see release notes to them for
130
117
details).
131
118
119
+ * The DWIM behaviour for "log --pretty=format:%gd -g" was somewhat
120
+ broken and gave undue precedence to configured log.date, causing
121
+ "git stash list" to show "stash@{time stamp string}".
122
+ (merge 55ccf85 jk/maint-reflog-walk-count-vs-time later to maint).
123
+
124
+ * Running "git checkout" on an unborn branch used to corrupt HEAD.
125
+ (merge 8338f77 ef/checkout-empty later to maint).
126
+
132
127
* When checking out another commit from an already detached state, we
133
128
used to report all commits that are not reachable from any of the
134
129
refs as lossage, but some of them might be reachable from the new
0 commit comments