Sixth batch for 2.17

Signed-off-by: Junio C Hamano <gitster@pobox.com>

Junio C Hamano committed Feb 28, 2018 at 13:39 UTC 7e31236f652ad9db221511eaf157ce0ef55585d6
1 file changed +25 -5
Documentation/RelNotes/2.17.0.txt
+25 -5
@@ -8,7 +8,6 @@ UI, Workflows & Features
8
9 * "diff" family of commands learned "--find-object=<object-id>" option
10 to limit the findings to changes that involve the named object.
11 - (merge 4d8c51aa19 sb/diff-blobfind-pickaxe later to maint).
11
12 * "git format-patch" learned to give 72-cols to diffstat, which is
13 consistent with other line length limits the subcommand uses for
@@ -20,6 +19,14 @@ UI, Workflows & Features
19
20 * "git rebase" learned to take "--allow-empty-message" option.
21
22 + * "git am" has learned the "--quit" option, in addition to the
23 + existing "--abort" option; having the pair mirrors a few other
24 + commands like "rebase" and "cherry-pick".
25 +
26 + * "git worktree add" learned to run the post-checkout hook, just like
27 + "git clone" runs it upon the initial checkout.
28 +
29 +
30 Performance, Internal Implementation, Development Support etc.
31
32 * More perf tests for threaded grep
@@ -95,7 +102,6 @@ Fixes since v2.16
102 it appear "removed") and then adding with the -N option (hence
103 making that appear "added") detected it as a rename, but did not
104 report the old and new pathnames correctly.
98 - (merge 176ea74793 nd/ita-wt-renames-in-status later to maint).
105
106 * "git svn dcommit" did not take into account the fact that a
107 svn+ssh:// URL with a username@ (typically used for pushing) refers
@@ -114,11 +120,9 @@ Fixes since v2.16
120 * "git commit --fixup" did not allow "-m<message>" option to be used
121 at the same time; allow it to annotate resulting commit with more
122 text.
117 - (merge 30884c9afc ab/commit-m-with-fixup later to maint).
123
124 * When resetting the working tree files recursively, the working tree
125 of submodules are now also reset to match.
121 - (merge 7dcc1f4df8 sb/submodule-update-reset-fix later to maint).
126
127 * "git stash -- <pathspec>" incorrectly blew away untracked files in
128 the directory that matched the pathspec, which has been corrected.
@@ -211,9 +215,22 @@ Fixes since v2.16
215 and produced bogus results instead.
216 (merge ddbbf8eb25 jk/sq-dequote-on-bogus-input later to maint).
217
218 + * Many places in "git apply" knew that "/dev/null" that signals
219 + "there is no such file on this side of the diff" can be followed by
220 + whitespace and garbage when parsing a patch, except for one, which
221 + made an otherwise valid patch (e.g. ones from subversion) rejected.
222 + (merge e454ad4bec tk/apply-dev-null-verify-name-fix later to maint).
223 +
224 + * We no longer create any *.spec file, so "make clean" should not
225 + remove it.
226 + (merge 4321bdcabb tz/do-not-clean-spec-file later to maint).
227 +
228 + * "git push" over http transport did not unquote the push-options
229 + correctly.
230 + (merge 90dce21eb0 jk/push-options-via-transport-fix later to maint).
231 +
232 * Other minor doc, test and build updates and code cleanups.
233 (merge e2a5a028c7 bw/oidmap-autoinit later to maint).
216 - (merge f0a6068a9f ys/bisect-object-id-missing-conversion-fix later to maint).
234 (merge ec3b4b06f8 cl/t9001-cleanup later to maint).
235 (merge e1b3f3dd38 ks/submodule-doc-updates later to maint).
236 (merge fbac558a9b rs/describe-unique-abbrev later to maint).
@@ -235,3 +252,6 @@ Fixes since v2.16
252 (merge 4ccf461f56 bp/fsmonitor later to maint).
253 (merge a6119f82b1 jk/test-hashmap-updates later to maint).
254 (merge 5aea9fe6cc rd/typofix later to maint).
255 + (merge e4e5da2796 sb/status-doc-fix later to maint).
256 + (merge 7976e901c8 gs/test-unset-xdg-cache-home later to maint).
257 + (merge d023df1ee6 tg/worktree-create-tracking later to maint).