1Git v1.8.3 Release Notes 2======================== 3 4Backward compatibility notes (for Git 2.0) 5------------------------------------------ 6 7When "git push [$there]" does not say what to push, we have used the 8traditional "matching" semantics so far (all your branches were sent 9to the remote as long as there already are branches of the same name 10over there). In Git 2.0, the default will change to the "simple" 11semantics that pushes the current branch to the branch with the same 12name, only when the current branch is set to integrate with that 13remote branch. There is a user preference configuration variable 14"push.default" to change this. If you are an old-timer who is used 15to the "matching" semantics, you can set it to "matching" to keep the 16traditional behaviour. If you want to live in the future early, 17you can set it to "simple" today without waiting for Git 2.0. 18 19When "git add -u" and "git add -A", that does not specify what paths 20to add on the command line is run from inside a subdirectory, these 21commands will operate on the entire tree in Git 2.0 for consistency 22with "git commit -a" and other commands. Because there will be no 23mechanism to make "git add -u" behave as if "git add -u .", it is 24important for those who are used to "git add -u" (without pathspec) 25updating the index only for paths in the current subdirectory to start 26training their fingers to explicitly say "git add -u ." when they mean 27it before Git 2.0 comes. A warning is issued when these commands are 28run without a pathspec and when you have local changes outside the 29current directory, because the behaviour in Git 2.0 will be different 30from today's version in such a situation. 31 32 33Updates since v1.8.2 34-------------------- 35 36Foreign interface 37 38 * remote-hg helper (in contrib/) has been updated. 39 40 41UI, Workflows & Features 42 43 * "git branch --vv" learned to paint the name of the branch it 44 integrates with in a different color (color.branch.upstream, 45 which defaults to blue). 46 47 * In a sparsely populated working tree, "git checkout <pathspec>" no 48 longer unmarks paths that match the given pathspec that were 49 originally ignored with "--sparse" (use --ignore-skip-worktree-bits 50 option to resurrect these paths out of the index if you really want 51 to). 52 53 * "git log --format" specifier learned %C(auto) token that tells Git 54 to use color when interpolating %d (decoration), %h (short commit 55 object name), etc. for terminal output. 56 57 * "git bisect" leaves the final outcome as a comment in its bisect 58 log file. 59 60 * "git clone --reference" can now refer to a gitfile "textual symlink" 61 that points at the real location of the repository. 62 63 * "git count-objects" learned "--human-readable" aka "-H" option to 64 show various large numbers in Ki/Mi/GiB scaled as necessary. 65 66 * "git cherry-pick $blob" and "git cherry-pick $tree" are nonsense, 67 and a more readable error message e.g. "can't cherry-pick a tree" 68 is given (we used to say "expected exactly one commit"). 69 70 * The "--annotate" option to "git send-email" can be turned on (or 71 off) by default with sendemail.annotate configuration variable (you 72 can use --no-annotate from the command line to override it). 73 74 * The "--cover-letter" option to "git format-patch" can be turned on 75 (or off) by default with format.coverLetter configuration 76 variable. By setting it to 'auto', you can turn it on only for a 77 series with two or more patches. 78 79 * The bash completion support (in contrib/) learned that cherry-pick 80 takes a few more options than it already knew about. 81 82 * "git help" learned "-g" option to show the list of guides just like 83 list of commands are given with "-a". 84 85 * A triangular "pull from one place, push to another place" workflow 86 is supported better by new remote.pushdefault (overrides the 87 "origin" thing) and branch.*.pushremote (overrides the 88 branch.*.remote) configuration variables. 89 90 * "git status" learned to report that you are in the middle of a 91 revert session, just like it does for a cherry-pick and a bisect 92 session. 93 94 * The handling by "git branch --set-upstream-to" against various forms 95 of erroneous inputs was suboptimal and has been improved. 96 97 * When the interactive access to git-shell is not enabled, it issues 98 a message meant to help the system administrator to enable it. 99 An explicit way to help the end users who connect to the service by 100 issuing custom messages to refuse such an access has been added. 101 102 * In addition to the case where the user edits the log message with 103 the "e)dit" option of "am -i", replace the "Applying: this patch" 104 message with the final log message contents after applymsg hook 105 munges it. 106 107 * "git status" suggests users to look into using --untracked=no option 108 when it takes too long. 109 110 * "git status" shows a bit more information to "git status" during a 111 rebase/bisect session. 112 113 * "git fetch" learned to fetch a commit at the tip of an unadvertised 114 ref by specifying a raw object name from the command line when the 115 server side supports this feature. 116 117 * Output from "git log --graph" works better with submodule log 118 output now. 119 120 * "git count-objects -v" learned to report leftover temporary 121 packfiles and other garbage in the object store. 122 123 * A new read-only credential helper (in contrib/) to interact with 124 the .netrc/.authinfo files has been added. 125 126 * "git send-email" can be used with the credential helper system. 127 128 * There was no Porcelain way to say "I no longer am interested in 129 this submodule", once you express your interest in a submodule with 130 "submodule init". "submodule deinit" is the way to do so. 131 132 * "git pull --rebase" learned to pass "-v/-q" options to underlying 133 "git rebase". 134 135 * The new "--follow-tags" option tells "git push" to push relevant 136 annotated tags when pushing branches out. 137 138 * "git merge" and "git pull" can optionally be told to inspect and 139 reject when merging a commit that does not carry a trusted GPG 140 signature. 141 142 * "git mergetool" now feeds files to the "p4merge" backend in the 143 order that matches the p4 convention, where "theirs" is usually 144 shown on the left side, which is the opposite from other backend 145 expects. 146 147 * "show/log" now honors gpg.program configuration just like other 148 parts of the code that use GnuPG. 149 150 * "git log" that shows the difference between the parent and the 151 child has been optimized somewhat. 152 153 * "git difftool" allows the user to write into the temporary files 154 being shown; if the user makes changes to the working tree at the 155 same time, one of the changes has to be lost in such a case, but it 156 tells the user what happened and refrains from overwriting the copy 157 in the working tree. 158 159 * There was no good way to ask "I have a random string that came from 160 outside world. I want to turn it into a 40-hex object name while 161 making sure such an object exists". A new peeling suffix ^{object} 162 can be used for that purpose, together with "rev-parse --verify". 163 164 165Performance, Internal Implementation, etc. 166 167 * Updates for building under msvc. 168 169 * A handful of issues in the code to traverse working tree to find 170 untracked and/or ignored files have been fixed, and the general 171 codepath involved in "status -u" and "clean" have been cleaned up 172 and optimized. 173 174 * The stack footprint of some codepaths that access an object from a 175 pack has been shrunk. 176 177 * The logic to coalesce the same lines removed from the parents in 178 the output from "diff -c/--cc" has been updated, but with an O(n^2) 179 complexity, so this might turn out to be undesirable. 180 181 * The code to enforce permission bits on files in $GIT_DIR/ for 182 shared repositories have been simplified. 183 184 * A few codepaths knew how much data they need to put in the 185 hashtables they use upfront, but still started from a small table 186 repeatedly growing and rehashing. 187 188 * The API to walk reflog entries from the latest to older, which was 189 necessary for operations such as "git checkout -", was cumbersome 190 to use correctly and also inefficient. 191 192 * Codepaths that inspect log-message-to-be and decide when to add a 193 new Signed-off-by line in various commands have been consolidated. 194 195 * The pkt-line API, implementation and its callers have been cleaned 196 up to make them more robust. 197 198 * Cygwin port has a faster-but-lying lstat(2) emulation whose 199 incorrectness does not matter in practice except for a few 200 codepaths, and setting permission bits to directories is a codepath 201 that needs to use a more correct one. 202 203 * "git checkout" had repeated pathspec matches on the same paths, 204 which have been consolidated. Also a bug in "git checkout dir/" 205 that is started from an unmerged index has been fixed. 206 207 * A few bugfixes to "git rerere" working on corner case merge 208 conflicts have been applied. 209 210 211Also contains various documentation updates and code clean-ups. 212 213 214Fixes since v1.8.2 215------------------ 216 217Unless otherwise noted, all the fixes since v1.8.2 in the maintenance 218track are contained in this release (see release notes to them for 219details). 220 221 * When receive-pack detects error in the pack header it received in 222 order to decide which of unpack-objects or index-pack to run, it 223 returned without closing the error stream, which led to a hang 224 sideband thread. 225 (merge 49ecfa1 jk/receive-pack-deadlocks-with-early-failure later to maint). 226 227 * Zsh completion forgot that '%' character used to signal untracked 228 files needs to be escaped with another '%'. 229 (merge 24b6132 fc/untracked-zsh-prompt later to maint). 230 231 * A commit object whose author or committer ident are malformed 232 crashed some code that trusted that a name, an email and an 233 timestamp can always be found in it. 234 (merge de5abe9 jk/chopped-ident later to maint). 235 236 * When "upload-pack" fails while generating a pack in response to 237 "git fetch" (or "git clone"), the receiving side mistakenly said 238 there was a programming error to trigger the die handler 239 recursively. 240 (merge 1ece66b jk/a-thread-only-dies-once later to maint). 241 242 * "rev-list --stdin" and friends kept bogus pointers into input 243 buffer around as human readble object names. This was not a huge 244 problem but was exposed by a new change that uses these names in 245 error output. 246 (merge 70d26c6 tr/copy-revisions-from-stdin later to maint). 247 248 * Smart-capable HTTP servers were not restricted via the 249 GIT_NAMESPACE mechanism when talking with commit-walker clients, 250 like they do when talking with smart HTTP clients. 251 (merge 6130f86 jk/http-dumb-namespaces later to maint). 252 253 * "git merge-tree" did not omit a merge result that is identical to 254 "our" side in certain cases. 255 (merge aacecc3 jk/merge-tree-added-identically later to maint). 256 257 * Perl scripts like "git-svn" closed (not redirecting to /dev/null) 258 the standard error stream, which is not a very smart thing to do. 259 Later open may return file descriptor #2 for unrelated purpose, and 260 error reporting code may write into them. 261 (merge a749c0b tr/perl-keep-stderr-open later to maint). 262 263 * "git show-branch" was not prepared to show a very long run of 264 ancestor operators e.g. foobar^2~2^2^2^2...^2~4 correctly. 265 (merge aaa07e3 jk/show-branch-strbuf later to maint). 266 267 * "git diff --diff-algorithm algo" is also understood as "git diff 268 --diff-algorithm=algo". 269 (merge 0895c6d jk/diff-algo-finishing-touches later to maint). 270 271 * The new core.commentchar configuration was not applied to a few 272 places. 273 (merge 89c3bbd rt/commentchar-fmt-merge-msg later to maint). 274 275 * "git bundle" did not like a bundle created using a commit without 276 any message as its one of the prerequistes. 277 (merge 5446e33 lf/bundle-with-tip-wo-message later to maint). 278 279 * "git log -S/-G" started paying attention to textconv filter, but 280 there was no way to disable this. Make it honor --no-textconv 281 option. 282 (merge 61690bf sr/log-SG-no-textconv later to maint). 283 284 * When used with "-d temporary-directory" option, "git filter-branch" 285 failed to come back to the original working tree to perform the 286 final clean-up procedure. 287 (merge 9727601 jk/filter-branch-come-back-to-original later to maint). 288 289 * "git merge $(git rev-parse v1.8.2)" behaved quite differently from 290 "git merge v1.8.2", as if v1.8.2 were written as v1.8.2^0 and did 291 not pay much attention to the annotated tag payload. Make the code 292 notice the type of the tag object, in addition to the dwim_ref() 293 based classification the current code uses (i.e. the name appears 294 in refs/tags/) to decide when to special case merging of tags. 295 (merge a38d3d7 jc/merge-tag-object later to maint). 296 297 * Fix 1.8.1.x regression that stopped matching "dir" (without 298 trailing slash) to a directory "dir". 299 (merge efa5f82 jc/directory-attrs-regression-fix later to maint-1.8.1). 300 301 * "git apply --whitespace=fix" was not prepared to see a line getting 302 longer after fixing whitespaces (e.g. tab-in-indent aka Python). 303 (merge 329b26e jc/apply-ws-fix-tab-in-indent later to maint-1.8.1). 304 305 * The prompt string generator (in contrib/completion/) did not notice 306 when we are in a middle of a "git revert" session. 307 (merge 3ee4452 rr/prompt-revert-head later to maint). 308 309 * "submodule summary --summary-limit" option did not support 310 "--option=value" form. 311 (merge 862ae6c rs/submodule-summary-limit later to maint). 312 313 * "index-pack --fix-thin" used an uninitialized value to compute 314 delta depths of objects it appends to the resulting pack. 315 (merge 57165db jk/index-pack-correct-depth-fix later to maint). 316 317 * "index-pack --verify-stat" used a few counters outside protection 318 of mutex, possibly showing incorrect numbers. 319 (merge 8f82aad nd/index-pack-threaded-fixes later to maint). 320 321 * The code to keep track of what directory names are known to Git on 322 platforms with case insensitive filesystems can get confused upon a 323 hash collision between these pathnames and looped forever. 324 325 * Annotated tags outside refs/tags/ hierarchy were not advertised 326 correctly to the ls-remote and fetch with recent version of Git. 327 328 * Recent optimization broke shallow clones. 329 (merge f59de5d jk/peel-ref later to maint). 330 331 * "git cmd -- ':(top'" was not diagnosed as an invalid syntax, and 332 instead the parser kept reading beyond the end of the string. 333 334 * "git tag -f <tag>" always said "Updated tag '<tag>'" even when 335 creating a new tag (i.e. not overwriting nor updating). 336 337 * "git p4" did not behave well when the path to the root of the P4 338 client was not its real path. 339 (merge bbd8486 pw/p4-symlinked-root later to maint). 340 341 * "git archive" reports a failure when asked to create an archive out 342 of an empty tree. It would be more intuitive to give an empty 343 archive back in such a case. 344 345 * When "format-patch" quoted a non-ascii strings on the header files, 346 it incorrectly applied rfc2047 and chopped a single character in 347 the middle of it. 348 349 * An aliased command spawned from a bare repository that does not say 350 it is bare with "core.bare = yes" is treated as non-bare by mistake. 351 352 * In "git reflog expire", REACHABLE bit was not cleared from the 353 correct objects. 354 355 * The logic used by "git diff -M --stat" to shorten the names of 356 files before and after a rename did not work correctly when the 357 common prefix and suffix between the two filenames overlapped. 358 359 * The "--match=<pattern>" option of "git describe", when used with 360 "--all" to allow refs that are not annotated tags to be used as a 361 base of description, did not restrict the output from the command 362 to those that match the given pattern. 363 364 * Clarify in the documentation "what" gets pushed to "where" when the 365 command line to "git push" does not say these explicitly. 366 367 * The "--color=<when>" argument to the commands in the diff family 368 was described poorly. 369 370 * The arguments given to pre-rebase hook were not documented. 371 372 * The v4 index format was not documented. 373 374 * The "--match=<pattern>" argument "git describe" takes uses glob 375 pattern but it wasn't obvious from the documentation. 376 377 * Some sources failed to compile on systems that lack NI_MAXHOST in 378 their system header (e.g. z/OS). 379 380 * Add an example use of "--env-filter" in "filter-branch" 381 documentation. 382 383 * "git bundle verify" did not say "records a complete history" for a 384 bundle that does not have any prerequisites. 385 386 * In the v1.8.0 era, we changed symbols that do not have to be global 387 to file scope static, but a few functions in graph.c were used by 388 CGit from sideways bypassing the entry points of the API the 389 in-tree users use. 390 391 * "git update-index -h" did not do the usual "-h(elp)" thing. 392 393 * "git index-pack" had a buffer-overflow while preparing an 394 informational message when the translated version of it was too 395 long. 396 397 * 'git commit -m "$msg"' used to add an extra newline even when 398 $msg already ended with one. 399 400 * The SSL peer verification done by "git imap-send" did not ask for 401 Server Name Indication (RFC 4366), failing to connect SSL/TLS 402 sites that serve multiple hostnames on a single IP. 403 404 * perl/Git.pm::cat_blob slurped everything in core only to write it 405 out to a file descriptor, which was not a very smart thing to do. 406 407 * "git branch" did not bother to check nonsense command line 408 parameters and issue errors in many cases. 409 410 * Verification of signed tags were not done correctly when not in C 411 or en/US locale. 412 413 * Some platforms and users spell UTF-8 differently; retry with the 414 most official "UTF-8" when the system does not understand the 415 user-supplied encoding name that are the common alternative 416 spellings of UTF-8. 417 418 * When export-subst is used, "zip" output recorded incorrect 419 size of the file. 420 421 * "git am $maildir/" applied messages in an unexpected order; sort 422 filenames read from the maildir/ in a way that is more likely to 423 sort messages in the order the writing MUA meant to, by sorting 424 numeric segment in numeric order and non-numeric segment in 425 alphabetical order. 426 427 * "git submodule update", when recursed into sub-submodules, did not 428 accumulate the prefix paths.