@@ -32,6 +32,9 @@ Updates since v1.8.2
32
32
33
33
UI, Workflows & Features
34
34
35
+ * "git help" learned "-g" option to show the list of guides just like
36
+ list of commands are given with "-a".
37
+
35
38
* A triangular "pull from one place, push to another place" workflow
36
39
is supported better by new remote.pushdefault (overrides the
37
40
"origin" thing) and branch.*.pushremote (overrides the
@@ -41,11 +44,11 @@ UI, Workflows & Features
41
44
revert session, just like it does for a cherry-pick and a bisect
42
45
session.
43
46
44
- * The handing by "git branch --set-upstream-to" against various forms
45
- of errorneous inputs was suboptimal and has been improved.
47
+ * The handling by "git branch --set-upstream-to" against various forms
48
+ of erroneous inputs was suboptimal and has been improved.
46
49
47
50
* When the interactive access to git-shell is not enabled, it issues
48
- a message meant to help the system admininstrator to enable it.
51
+ a message meant to help the system administrator to enable it.
49
52
An explicit way to help the end users who connect to the service by
50
53
issuing custom messages to refuse such an access has been added.
51
54
@@ -113,6 +116,10 @@ Performance, Internal Implementation, etc.
113
116
114
117
* Updates for building under msvc.
115
118
119
+ * The logic to coalesce the same lines removed from the parents in
120
+ the output from "diff -c/--cc" has been updated, but with an O(n^2)
121
+ complexity, so this might turn out to be undesirable.
122
+
116
123
* The code to enforce permission bits on files in $GIT_DIR/ for
117
124
shared repositories have been simplified.
118
125
@@ -139,6 +146,9 @@ Performance, Internal Implementation, etc.
139
146
which have been consolidated. Also a bug in "git checkout dir/"
140
147
that is started from an unmerged index has been fixed.
141
148
149
+ * A few bugfixes to "git rerere" working on corner case merge
150
+ conflicts have been applied.
151
+
142
152
143
153
Also contains minor documentation updates and code clean-ups.
144
154
@@ -150,6 +160,11 @@ Unless otherwise noted, all the fixes since v1.8.2 in the maintenance
150
160
track are contained in this release (see release notes to them for
151
161
details).
152
162
163
+ * "git log -S/-G" started paying attention to textconv filter, but
164
+ there was no way to disable this. Make it honor --no-textconv
165
+ option.
166
+ (merge 61690bf sr/log-SG-no-textconv later to maint).
167
+
153
168
* When used with "-d temporary-directory" option, "git filter-branch"
154
169
failed to come back to the original working tree to perform the
155
170
final clean-up procedure.
@@ -179,8 +194,8 @@ details).
179
194
"--option=value" form.
180
195
(merge 862ae6c rs/submodule-summary-limit later to maint).
181
196
182
- * "index-pack --fix-thin" used uninitialize value to compute delta
183
- depths of objects it appends to the resulting pack.
197
+ * "index-pack --fix-thin" used an uninitialized value to compute
198
+ delta depths of objects it appends to the resulting pack.
184
199
(merge 57165db jk/index-pack-correct-depth-fix later to maint).
185
200
186
201
* "index-pack --verify-stat" used a few counters outside protection
@@ -294,4 +309,4 @@ details).
294
309
alphabetical order.
295
310
296
311
* "git submodule update", when recursed into sub-submodules, did not
297
- acccumulate the prefix paths.
312
+ accumulate the prefix paths.
0 commit comments