@@ -35,6 +35,13 @@ Foreign interfaces, subsystems and ports.
35
35
36
36
UI, Workflows & Features
37
37
38
+ * Having multiple "fixup!" on a line in the rebase instruction sheet
39
+ did not work very well with "git rebase -i --autosquash".
40
+
41
+ * "git log" learned the "--author-date-order" option, with which the
42
+ output is topologically sorted and commits in parallel histories
43
+ are shown intermixed together based on the author timestamp.
44
+
38
45
* Various subcommands of "git submodule" refused to run from anywhere
39
46
other than the top of the working tree of the superproject, but
40
47
they have been taught to let you run from a subdirectory.
@@ -116,6 +123,12 @@ UI, Workflows & Features
116
123
117
124
Performance, Internal Implementation, etc.
118
125
126
+ * The original way to specify remote repository using .git/branches/
127
+ used to have a nifty feature. The code to support the feature was
128
+ still in a function but the caller was changed not to call it 5
129
+ years ago, breaking that feature and leaving the supporting code
130
+ unreachable. The dead code has been removed.
131
+
119
132
* "git pack-refs" that races with new ref creation or deletion have
120
133
been susceptible to lossage of refs under right conditions, which
121
134
has been tightened up.
@@ -175,6 +188,9 @@ Unless otherwise noted, all the fixes since v1.8.3 in the maintenance
175
188
track are contained in this release (see release notes to them for
176
189
details).
177
190
191
+ * The configuration variable column.ui was poorly documented.
192
+ (merge 5e62cc1 rr/column-doc later to maint).
193
+
178
194
* "git name-rev --refs=tags/v*" were forbidden, which was a bit
179
195
inconvenient (you had to give a pattern to match refs fully, like
180
196
--refs=refs/tags/v*).
0 commit comments