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