1Git 2.17 Release Notes 2====================== 3 4Updates since v2.16 5------------------- 6 7UI, 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 12 * "git format-patch" learned to give 72-cols to diffstat, which is 13 consistent with other line length limits the subcommand uses for 14 its output meant for e-mails. 15 16 * The log from "git daemon" can be redirected with a new option; one 17 relevant use case is to send the log to standard error (instead of 18 syslog) when running it from inetd. 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 * "git tag" learned an explicit "--edit" option that allows the 30 message given via "-m" and "-F" to be further edited. 31 32 * "git fetch --prune-tags" may be used as a handy short-hand for 33 getting rid of stale tags that are locally held. 34 35 * The new "--show-current-patch" option gives an end-user facing way 36 to get the diff being applied when "git rebase" (and "git am") 37 stops with a conflict. 38 39 * "git add -p" used to offer "/" (look for a matching hunk) as a 40 choice, even there was only one hunk, which has been corrected. 41 Also the single-key help is now given only for keys that are 42 enabled (e.g. help for '/' won't be shown when there is only one 43 hunk). 44 45 * Since Git 1.7.9, "git merge" defaulted to --no-ff (i.e. even when 46 the side branch being merged is a descendant of the current commit, 47 create a merge commit instead of fast-forwarding) when merging a 48 tag object. This was appropriate default for integrators who pull 49 signed tags from their downstream contributors, but caused an 50 unnecessary merges when used by downstream contributors who 51 habitually "catch up" their topic branches with tagged releases 52 from the upstream. Update "git merge" to default to --no-ff only 53 when merging a tag object that does *not* sit at its usual place in 54 refs/tags/ hierarchy, and allow fast-forwarding otherwise, to 55 mitigate the problem. 56 57 * "git status" can spend a lot of cycles to compute the relation 58 between the current branch and its upstream, which can now be 59 disabled with "--no-ahead-behind" option. 60 61 * "git diff" and friends learned funcname patterns for Go language 62 source files. 63 64 65Performance, Internal Implementation, Development Support etc. 66 67 * More perf tests for threaded grep 68 69 * "perf" test output can be sent to codespeed server. 70 71 * The build procedure for perl/ part has been greatly simplified by 72 weaning ourselves off of MakeMaker. 73 74 * In preparation for implementing narrow/partial clone, the machinery 75 for checking object connectivity used by gc and fsck has been 76 taught that a missing object is OK when it is referenced by a 77 packfile specially marked as coming from trusted repository that 78 promises to make them available on-demand and lazily. 79 80 * The machinery to clone & fetch, which in turn involves packing and 81 unpacking objects, has been told how to omit certain objects using 82 the filtering mechanism introduced by another topic. It now knows 83 to mark the resulting pack as a promisor pack to tolerate missing 84 objects, laying foundation for "narrow" clones. 85 86 * The first step to getting rid of mru API and using the 87 doubly-linked list API directly instead. 88 89 * Retire mru API as it does not give enough abstraction over 90 underlying list API to be worth it. 91 92 * Rewrite two more "git submodule" subcommands in C. 93 94 * The tracing machinery learned to report tweaking of environment 95 variables as well. 96 97 * Update Coccinelle rules to catch and optimize strbuf_addf(&buf, "%s", str) 98 99 * Prevent "clang-format" from breaking line after function return type. 100 101 * The sequencer infrastructure is shared across "git cherry-pick", 102 "git rebase -i", etc., and has always spawned "git commit" when it 103 needs to create a commit. It has been taught to do so internally, 104 when able, by reusing the codepath "git commit" itself uses, which 105 gives performance boost for a few tens of percents in some sample 106 scenarios. 107 108 * Push the submodule version of collision-detecting SHA-1 hash 109 implementation a bit harder on builders. 110 111 * Avoid mmapping small files while using packed refs (especially ones 112 with zero size, which would cause later munmap() to fail). 113 114 * Conversion from uchar[20] to struct object_id continues. 115 116 * More tests for wildmatch functions. 117 118 * The code to binary search starting from a fan-out table (which is 119 how the packfile is indexed with object names) has been refactored 120 into a reusable helper. 121 122 * We now avoid using identifiers that clash with C++ keywords. Even 123 though it is not a goal to compile Git with C++ compilers, changes 124 like this help use of code analysis tools that targets C++ on our 125 codebase. 126 127 * The executable is now built in 'script' phase in Travis CI integration, 128 to follow the established practice, rather than during 'before_script' 129 phase. This allows the CI categorize the failures better ('failed' 130 is project's fault, 'errored' is build environment's). 131 (merge 3c93b82920 sg/travis-build-during-script-phase later to maint). 132 133 * Writing out the index file when the only thing that changed in it 134 is the untracked cache information is often wasteful, and this has 135 been optimized out. 136 137 138Also contains various documentation updates and code clean-ups. 139 140 141Fixes since v2.16 142----------------- 143 144 * An old regression in "git describe --all $annotated_tag^0" has been 145 fixed. 146 147 * "git status" after moving a path in the working tree (hence making 148 it appear "removed") and then adding with the -N option (hence 149 making that appear "added") detected it as a rename, but did not 150 report the old and new pathnames correctly. 151 152 * "git svn dcommit" did not take into account the fact that a 153 svn+ssh:// URL with a username@ (typically used for pushing) refers 154 to the same SVN repository without the username@ and failed when 155 svn.pushmergeinfo option is set. 156 157 * API clean-up around revision traversal. 158 159 * "git merge -Xours/-Xtheirs" learned to use our/their version when 160 resolving a conflicting updates to a symbolic link. 161 162 * "git clone $there $here" is allowed even when here directory exists 163 as long as it is an empty directory, but the command incorrectly 164 removed it upon a failure of the operation. 165 166 * "git commit --fixup" did not allow "-m<message>" option to be used 167 at the same time; allow it to annotate resulting commit with more 168 text. 169 170 * When resetting the working tree files recursively, the working tree 171 of submodules are now also reset to match. 172 173 * "git stash -- <pathspec>" incorrectly blew away untracked files in 174 the directory that matched the pathspec, which has been corrected. 175 176 * Instead of maintaining home-grown email address parsing code, ship 177 a copy of reasonably recent Mail::Address to be used as a fallback 178 in 'git send-email' when the platform lacks it. 179 (merge d60be8acab mm/send-email-fallback-to-local-mail-address later to maint). 180 181 * "git add -p" was taught to ignore local changes to submodules as 182 they do not interfere with the partial addition of regular changes 183 anyway. 184 185 * Avoid showing a warning message in the middle of a line of "git 186 diff" output. 187 (merge 4e056c989f nd/diff-flush-before-warning later to maint). 188 189 * The http tracing code, often used to debug connection issues, 190 learned to redact potentially sensitive information from its output 191 so that it can be more safely sharable. 192 (merge 8ba18e6fa4 jt/http-redact-cookies later to maint). 193 194 * Crash fix for a corner case where an error codepath tried to unlock 195 what it did not acquire lock on. 196 (merge 81fcb698e0 mr/packed-ref-store-fix later to maint). 197 198 * The split-index mode had a few corner case bugs fixed. 199 (merge ae59a4e44f tg/split-index-fixes later to maint). 200 201 * Assorted fixes to "git daemon". 202 (merge ed15e58efe jk/daemon-fixes later to maint). 203 204 * Completion of "git merge -s<strategy>" (in contrib/) did not work 205 well in non-C locale. 206 (merge 7cc763aaa3 nd/list-merge-strategy later to maint). 207 208 * Workaround for segfault with more recent versions of SVN. 209 (merge 7f6f75e97a ew/svn-branch-segfault-fix later to maint). 210 211 * Plug recently introduced leaks in fsck. 212 (merge ba3a08ca0e jt/fsck-code-cleanup later to maint). 213 214 * "git pull --rebase" did not pass verbosity setting down when 215 recursing into a submodule. 216 (merge a56771a668 sb/pull-rebase-submodule later to maint). 217 218 * The way "git reset --hard" reports the commit the updated HEAD 219 points at is made consistent with the way how the commit title is 220 generated by the other parts of the system. This matters when the 221 title is spread across physically multiple lines. 222 (merge 1cf823fb68 tg/reset-hard-show-head-with-pretty later to maint). 223 224 * Test fixes. 225 (merge 63b1a175ee sg/test-i18ngrep later to maint). 226 227 * Some bugs around "untracked cache" feature have been fixed. This 228 will notice corrupt data in the untracked cache left by old and 229 buggy code and issue a warning---the index can be fixed by clearing 230 the untracked cache from it. 231 (merge 0cacebf099 nd/fix-untracked-cache-invalidation later to maint). 232 (merge 7bf0be7501 ab/untracked-cache-invalidation-docs later to maint). 233 234 * "git blame HEAD COPYING" in a bare repository failed to run, while 235 "git blame HEAD -- COPYING" run just fine. This has been corrected. 236 237 * "git add" files in the same directory, but spelling the directory 238 path in different cases on case insensitive filesystem, corrupted 239 the name hash data structure and led to unexpected results. This 240 has been corrected. 241 (merge c95525e90d bp/name-hash-dirname-fix later to maint). 242 243 * "git rebase -p" mangled log messages of a merge commit, which is 244 now fixed. 245 (merge ed5144d7eb js/fix-merge-arg-quoting-in-rebase-p later to maint). 246 247 * Some low level protocol codepath could crash when they get an 248 unexpected flush packet, which is now fixed. 249 (merge bb1356dc64 js/packet-read-line-check-null later to maint). 250 251 * "git check-ignore" with multiple paths got confused when one is a 252 file and the other is a directory, which has been fixed. 253 (merge d60771e930 rs/check-ignore-multi later to maint). 254 255 * "git describe $garbage" stopped giving any errors when the garbage 256 happens to be a string with 40 hexadecimal letters. 257 (merge a8e7a2bf0f sb/describe-blob later to maint). 258 259 * Code to unquote single-quoted string (used in the parser for 260 configuration files, etc.) did not diagnose bogus input correctly 261 and produced bogus results instead. 262 (merge ddbbf8eb25 jk/sq-dequote-on-bogus-input later to maint). 263 264 * Many places in "git apply" knew that "/dev/null" that signals 265 "there is no such file on this side of the diff" can be followed by 266 whitespace and garbage when parsing a patch, except for one, which 267 made an otherwise valid patch (e.g. ones from subversion) rejected. 268 (merge e454ad4bec tk/apply-dev-null-verify-name-fix later to maint). 269 270 * We no longer create any *.spec file, so "make clean" should not 271 remove it. 272 (merge 4321bdcabb tz/do-not-clean-spec-file later to maint). 273 274 * "git push" over http transport did not unquote the push-options 275 correctly. 276 (merge 90dce21eb0 jk/push-options-via-transport-fix later to maint). 277 278 * "git send-email" learned to complain when the batch-size option is 279 not defined when the relogin-delay option is, since these two are 280 mutually required. 281 (merge 9caa70697b xz/send-email-batch-size later to maint). 282 283 * Y2k20 fix ;-) for our perl scripts. 284 (merge a40e06ee33 bw/perl-timegm-timelocal-fix later to maint). 285 286 * Threaded "git grep" has been optimized to avoid allocation in code 287 section that is covered under a mutex. 288 (merge 38ef24dccf rv/grep-cleanup later to maint). 289 290 * "git subtree" script (in contrib/) scripted around "git log", whose 291 output got affected by end-user configuration like log.showsignature 292 (merge 8841b5222c sg/subtree-signed-commits later to maint). 293 294 * While finding unique object name abbreviation, the code may 295 accidentally have read beyond the end of the array of object names 296 in a pack. 297 (merge 21abed500c ds/find-unique-abbrev-optim later to maint). 298 299 * Micro optimization in revision traversal code. 300 (merge ebbed3ba04 ds/mark-parents-uninteresting-optim later to maint). 301 302 * "git commit" used to run "gc --auto" near the end, which was lost 303 when the command was reimplemented in C by mistake. 304 (merge 095c741edd ab/gc-auto-in-commit later to maint). 305 306 * Other minor doc, test and build updates and code cleanups. 307 (merge e2a5a028c7 bw/oidmap-autoinit later to maint). 308 (merge ec3b4b06f8 cl/t9001-cleanup later to maint). 309 (merge e1b3f3dd38 ks/submodule-doc-updates later to maint). 310 (merge fbac558a9b rs/describe-unique-abbrev later to maint). 311 (merge 8462ff43e4 tb/crlf-conv-flags later to maint). 312 (merge 7d68bb0766 rb/hashmap-h-compilation-fix later to maint). 313 (merge 3449847168 cc/sha1-file-name later to maint). 314 (merge ad622a256f ds/use-get-be64 later to maint). 315 (merge f919ffebed sg/cocci-move-array later to maint). 316 (merge 4e801463c7 jc/mailinfo-cleanup-fix later to maint). 317 (merge ef5b3a6c5e nd/shared-index-fix later to maint). 318 (merge 9f5258cbb8 tz/doc-show-defaults-to-head later to maint). 319 (merge b780e4407d jc/worktree-add-short-help later to maint). 320 (merge ae239fc8e5 rs/cocci-strbuf-addf-to-addstr later to maint). 321 (merge 2e22a85e5c nd/ignore-glob-doc-update later to maint). 322 (merge 3738031581 jk/gettext-poison later to maint). 323 (merge 54360a1956 rj/sparse-updates later to maint). 324 (merge 12e31a6b12 sg/doc-test-must-fail-args later to maint). 325 (merge 760f1ad101 bc/doc-interpret-trailers-grammofix later to maint). 326 (merge 4ccf461f56 bp/fsmonitor later to maint). 327 (merge a6119f82b1 jk/test-hashmap-updates later to maint). 328 (merge 5aea9fe6cc rd/typofix later to maint). 329 (merge e4e5da2796 sb/status-doc-fix later to maint). 330 (merge 7976e901c8 gs/test-unset-xdg-cache-home later to maint). 331 (merge d023df1ee6 tg/worktree-create-tracking later to maint). 332 (merge 4cbe92fd41 sm/mv-dry-run-update later to maint). 333 (merge 75e5e9c3f7 sb/color-h-cleanup later to maint). 334 (merge 2708ef4af6 sg/t6300-modernize later to maint). 335 (merge d88e92d4e0 bw/doc-submodule-recurse-config-with-clone later to maint). 336 (merge f74bbc8dd2 jk/cached-commit-buffer later to maint). 337 (merge 1316416903 ms/non-ascii-ticks later to maint). 338 (merge 878056005e rs/strbuf-read-file-or-whine later to maint). 339 (merge 79f0ba1547 jk/strbuf-read-file-close-error later to maint). 340 (merge edfb8ba068 ot/ref-filter-cleanup later to maint). 341 (merge 11395a3b4b jc/test-must-be-empty later to maint). 342 (merge 768b9d6db7 mk/doc-pretty-fill later to maint).