@@ -81,6 +81,17 @@ UI, Workflows & Features
81
81
* "git log" that shows the difference between the parent and the
82
82
child has been optimized somewhat.
83
83
84
+ * "git difftool" allows the user to write into the temporary files
85
+ being shown; if the user makes changes to the working tree at the
86
+ same time, one of the changes has to be lost in such a case, but it
87
+ tells the user what happened and refrains from overwriting the copy
88
+ in the working tree.
89
+
90
+ * There was no good way to ask "I have a random string that came from
91
+ outside world. I want to turn it into a 40-hex object name while
92
+ making sure such an object exists". A new peeling suffix ^{object}
93
+ can be used for that purpose, together with "rev-parse --verify".
94
+
84
95
85
96
Performance, Internal Implementation, etc.
86
97
@@ -105,6 +116,10 @@ Performance, Internal Implementation, etc.
105
116
codepaths, and setting permission bits to directories is a codepath
106
117
that needs to use a more correct one.
107
118
119
+ * "git checkout" had repeated pathspec matches on the same paths,
120
+ which have been consolidated. Also a bug in "git checkout dir/"
121
+ that is started from an unmerged index has been fixed.
122
+
108
123
109
124
Also contains minor documentation updates and code clean-ups.
110
125
@@ -116,6 +131,22 @@ Unless otherwise noted, all the fixes since v1.8.2 in the maintenance
116
131
track are contained in this release (see release notes to them for
117
132
details).
118
133
134
+ * Fix 1.8.1.x regression that stopped matching "dir" (without
135
+ trailing slash) to a directory "dir".
136
+ (merge efa5f82 jc/directory-attrs-regression-fix later to maint-1.8.1).
137
+
138
+ * "git apply --whitespace=fix" was not prepared to see a line getting
139
+ longer after fixing whitespaces (e.g. tab-in-indent aka Python).
140
+ (merge 329b26e jc/apply-ws-fix-tab-in-indent later to maint-1.8.1).
141
+
142
+ * The prompt string generator (in contrib/completion/) did not notice
143
+ when we are in a middle of a "git revert" session.
144
+ (merge 3ee4452 rr/prompt-revert-head later to maint).
145
+
146
+ * "submodule summary --summary-limit" option did not support
147
+ "--option=value" form.
148
+ (merge 862ae6c rs/submodule-summary-limit later to maint).
149
+
119
150
* "index-pack --fix-thin" used uninitialize value to compute delta
120
151
depths of objects it appends to the resulting pack.
121
152
(merge 57165db jk/index-pack-correct-depth-fix later to maint).
@@ -127,22 +158,18 @@ details).
127
158
* The code to keep track of what directory names are known to Git on
128
159
platforms with case insensitive filesystems can get confused upon a
129
160
hash collision between these pathnames and looped forever.
130
- (merge 2092678 kb/name-hash later to maint).
131
161
132
162
* Annotated tags outside refs/tags/ hierarchy were not advertised
133
163
correctly to the ls-remote and fetch with recent version of Git.
134
- (merge c29c46f jk/fully-peeled-packed-ref later to maint).
135
164
136
165
* Recent optimization broke shallow clones.
137
166
(merge f59de5d jk/peel-ref later to maint).
138
167
139
168
* "git cmd -- ':(top'" was not diagnosed as an invalid syntax, and
140
169
instead the parser kept reading beyond the end of the string.
141
- (merge f612a67 lf/setup-prefix-pathspec later to maint).
142
170
143
171
* "git tag -f <tag>" always said "Updated tag '<tag>'" even when
144
172
creating a new tag (i.e. not overwriting nor updating).
145
- (merge 3ae851e ph/tag-force-no-warn-on-creation later to maint).
146
173
147
174
* "git p4" did not behave well when the path to the root of the P4
148
175
client was not its real path.
@@ -151,16 +178,13 @@ details).
151
178
* "git archive" reports a failure when asked to create an archive out
152
179
of an empty tree. It would be more intuitive to give an empty
153
180
archive back in such a case.
154
- (merge bd54cf1 jk/empty-archive later to maint).
155
181
156
182
* When "format-patch" quoted a non-ascii strings on the header files,
157
183
it incorrectly applied rfc2047 and chopped a single character in
158
184
the middle of it.
159
- (merge 6cd3c05 ks/rfc2047-one-char-at-a-time later to maint).
160
185
161
186
* An aliased command spawned from a bare repository that does not say
162
187
it is bare with "core.bare = yes" is treated as non-bare by mistake.
163
- (merge 2cd83d1 jk/alias-in-bare later to maint).
164
188
165
189
* In "git reflog expire", REACHABLE bit was not cleared from the
166
190
correct objects.
@@ -173,7 +197,6 @@ details).
173
197
"--all" to allow refs that are not annotated tags to be used as a
174
198
base of description, did not restrict the output from the command
175
199
to those that match the given pattern.
176
- (merge 46e1d6e jc/describe later to maint).
177
200
178
201
* Clarify in the documentation "what" gets pushed to "where" when the
179
202
command line to "git push" does not say these explicitly.
@@ -210,7 +233,6 @@ details).
210
233
211
234
* 'git commit -m "$msg"' used to add an extra newline even when
212
235
$msg already ended with one.
213
- (merge 46fbf75 bc/commit-complete-lines-given-via-m-option later to maint).
214
236
215
237
* The SSL peer verification done by "git imap-send" did not ask for
216
238
Server Name Indication (RFC 4366), failing to connect SSL/TLS
@@ -224,7 +246,6 @@ details).
224
246
225
247
* Verification of signed tags were not done correctly when not in C
226
248
or en/US locale.
227
- (merge 0174eea mg/gpg-interface-using-status later to maint).
228
249
229
250
* Some platforms and users spell UTF-8 differently; retry with the
230
251
most official "UTF-8" when the system does not understand the
0 commit comments