404

[ Avaa Bypassed ]




Upload:

Command:

botdev@3.147.59.237: ~ $
Git v2.9.3 Release Notes
========================

Fixes since v2.9.2
------------------

 * A helper function that takes the contents of a commit object and
   finds its subject line did not ignore leading blank lines, as is
   commonly done by other codepaths.  Make it ignore leading blank
   lines to match.

 * Git does not know what the contents in the index should be for a
   path added with "git add -N" yet, so "git grep --cached" should not
   show hits (or show lack of hits, with -L) in such a path, but that
   logic does not apply to "git grep", i.e. searching in the working
   tree files.  But we did so by mistake, which has been corrected.

 * "git rebase -i --autostash" did not restore the auto-stashed change
   when the operation was aborted.

 * "git commit --amend --allow-empty-message -S" for a commit without
   any message body could have misidentified where the header of the
   commit object ends.

 * More mark-up updates to typeset strings that are expected to
   literally typed by the end user in fixed-width font.

 * For a long time, we carried an in-code comment that said our
   colored output would work only when we use fprintf/fputs on
   Windows, which no longer is the case for the past few years.

 * "gc.autoPackLimit" when set to 1 should not trigger a repacking
   when there is only one pack, but the code counted poorly and did
   so.

 * One part of "git am" had an oddball helper function that called
   stuff from outside "his" as opposed to calling what we have "ours",
   which was not gender-neutral and also inconsistent with the rest of
   the system where outside stuff is usuall called "theirs" in
   contrast to "ours".

 * The test framework learned a new helper test_match_signal to
   check an exit code from getting killed by an expected signal.

 * "git blame -M" missed a single line that was moved within the file.

 * Fix recently introduced codepaths that are involved in parallel
   submodule operations, which gave up on reading too early, and
   could have wasted CPU while attempting to write under a corner
   case condition.

 * "git grep -i" has been taught to fold case in non-ascii locales
   correctly.

 * A test that unconditionally used "mktemp" learned that the command
   is not necessarily available everywhere.

 * "git blame file" allowed the lineage of lines in the uncommitted,
   unadded contents of "file" to be inspected, but it refused when
   "file" did not appear in the current commit.  When "file" was
   created by renaming an existing file (but the change has not been
   committed), this restriction was unnecessarily tight.

 * "git add -N dir/file && git write-tree" produced an incorrect tree
   when there are other paths in the same directory that sorts after
   "file".

 * "git fetch http://user:pass@host/repo..." scrubbed the userinfo
   part, but "git push" didn't.

 * An age old bug that caused "git diff --ignore-space-at-eol"
   misbehave has been fixed.

 * "git notes merge" had a code to see if a path exists (and fails if
   it does) and then open the path for writing (when it doesn't).
   Replace it with open with O_EXCL.

 * "git pack-objects" and "git index-pack" mostly operate with off_t
   when talking about the offset of objects in a packfile, but there
   were a handful of places that used "unsigned long" to hold that
   value, leading to an unintended truncation.

 * Recent update to "git daemon" tries to enable the socket-level
   KEEPALIVE, but when it is spawned via inetd, the standard input
   file descriptor may not necessarily be connected to a socket.
   Suppress an ENOTSOCK error from setsockopt().

 * Recent FreeBSD stopped making perl available at /usr/bin/perl;
   switch the default the built-in path to /usr/local/bin/perl on not
   too ancient FreeBSD releases.

 * "git status" learned to suggest "merge --abort" during a conflicted
   merge, just like it already suggests "rebase --abort" during a
   conflicted rebase.

 * The .c/.h sources are marked as such in our .gitattributes file so
   that "git diff -W" and friends would work better.

 * Existing autoconf generated test for the need to link with pthread
   library did not check all the functions from pthread libraries;
   recent FreeBSD has some functions in libc but not others, and we
   mistakenly thought linking with libc is enough when it is not.

 * Allow http daemon tests in Travis CI tests.

 * Users of the parse_options_concat() API function need to allocate
   extra slots in advance and fill them with OPT_END() when they want
   to decide the set of supported options dynamically, which makes the
   code error-prone and hard to read.  This has been corrected by tweaking
   the API to allocate and return a new copy of "struct option" array.

 * The use of strbuf in "git rm" to build filename to remove was a bit
   suboptimal, which has been fixed.

 * "git commit --help" said "--no-verify" is only about skipping the
   pre-commit hook, and failed to say that it also skipped the
   commit-msg hook.

 * "git merge" in Git v2.9 was taught to forbid merging an unrelated
   lines of history by default, but that is exactly the kind of thing
   the "--rejoin" mode of "git subtree" (in contrib/) wants to do.
   "git subtree" has been taught to use the "--allow-unrelated-histories"
   option to override the default.

 * The build procedure for "git persistent-https" helper (in contrib/)
   has been updated so that it can be built with more recent versions
   of Go.

 * There is an optimization used in "git diff $treeA $treeB" to borrow
   an already checked-out copy in the working tree when it is known to
   be the same as the blob being compared, expecting that open/mmap of
   such a file is faster than reading it from the object store, which
   involves inflating and applying delta.  This however kicked in even
   when the checked-out copy needs to go through the convert-to-git
   conversion (including the clean filter), which defeats the whole
   point of the optimization.  The optimization has been disabled when
   the conversion is necessary.

 * "git -c grep.patternType=extended log --basic-regexp" misbehaved
   because the internal API to access the grep machinery was not
   designed well.

 * Windows port was failing some tests in t4130, due to the lack of
   inum in the returned values by its lstat(2) emulation.

 * The characters in the label shown for tags/refs for commits in
   "gitweb" output are now properly escaped for proper HTML output.

 * FreeBSD can lie when asked mtime of a directory, which made the
   untracked cache code to fall back to a slow-path, which in turn
   caused tests in t7063 to fail because it wanted to verify the
   behaviour of the fast-path.

 * Squelch compiler warnings for netmalloc (in compat/) library.

 * The API documentation for hashmap was unclear if hashmap_entry
   can be safely discarded without any other consideration.  State
   that it is safe to do so.

 * Not-so-recent rewrite of "git am" that started making internal
   calls into the commit machinery had an unintended regression, in
   that no matter how many seconds it took to apply many patches, the
   resulting committer timestamp for the resulting commits were all
   the same.

 * "git difftool <paths>..." started in a subdirectory failed to
   interpret the paths relative to that directory, which has been
   fixed.

Also contains minor documentation updates and code clean-ups.

Filemanager

Name Type Size Permission Actions
1.5.0.1.txt File 1.23 KB 0644
1.5.0.2.txt File 2.25 KB 0644
1.5.0.3.txt File 1.54 KB 0644
1.5.0.4.txt File 462 B 0644
1.5.0.5.txt File 609 B 0644
1.5.0.6.txt File 484 B 0644
1.5.0.7.txt File 482 B 0644
1.5.0.txt File 18.2 KB 0644
1.5.1.1.txt File 2.11 KB 0644
1.5.1.2.txt File 1.61 KB 0644
1.5.1.3.txt File 1.53 KB 0644
1.5.1.4.txt File 843 B 0644
1.5.1.5.txt File 1.4 KB 0644
1.5.1.6.txt File 1.48 KB 0644
1.5.1.txt File 12.98 KB 0644
1.5.2.1.txt File 1.42 KB 0644
1.5.2.2.txt File 2.04 KB 0644
1.5.2.3.txt File 796 B 0644
1.5.2.4.txt File 802 B 0644
1.5.2.5.txt File 928 B 0644
1.5.2.txt File 7.18 KB 0644
1.5.3.1.txt File 326 B 0644
1.5.3.2.txt File 1.89 KB 0644
1.5.3.3.txt File 896 B 0644
1.5.3.4.txt File 1.18 KB 0644
1.5.3.5.txt File 3.3 KB 0644
1.5.3.6.txt File 1.4 KB 0644
1.5.3.7.txt File 1.55 KB 0644
1.5.3.8.txt File 783 B 0644
1.5.3.txt File 13.7 KB 0644
1.5.4.1.txt File 524 B 0644
1.5.4.2.txt File 1.49 KB 0644
1.5.4.3.txt File 997 B 0644
1.5.4.4.txt File 2.56 KB 0644
1.5.4.5.txt File 2.19 KB 0644
1.5.4.6.txt File 1.41 KB 0644
1.5.4.7.txt File 342 B 0644
1.5.4.txt File 14.09 KB 0644
1.5.5.1.txt File 1.46 KB 0644
1.5.5.2.txt File 772 B 0644
1.5.5.3.txt File 305 B 0644
1.5.5.4.txt File 140 B 0644
1.5.5.5.txt File 449 B 0644
1.5.5.6.txt File 342 B 0644
1.5.5.txt File 7.42 KB 0644
1.5.6.1.txt File 793 B 0644
1.5.6.2.txt File 1.42 KB 0644
1.5.6.3.txt File 2.06 KB 0644
1.5.6.4.txt File 1.54 KB 0644
1.5.6.5.txt File 1.02 KB 0644
1.5.6.6.txt File 342 B 0644
1.5.6.txt File 3.75 KB 0644
1.6.0.1.txt File 1.16 KB 0644
1.6.0.2.txt File 2.77 KB 0644
1.6.0.3.txt File 4.22 KB 0644
1.6.0.4.txt File 1.26 KB 0644
1.6.0.5.txt File 1.97 KB 0644
1.6.0.6.txt File 1.17 KB 0644
1.6.0.txt File 9.81 KB 0644
1.6.1.1.txt File 1.93 KB 0644
1.6.1.2.txt File 1.6 KB 0644
1.6.1.3.txt File 847 B 0644
1.6.1.4.txt File 1.56 KB 0644
1.6.1.txt File 10.08 KB 0644
1.6.2.1.txt File 597 B 0644
1.6.2.2.txt File 1.47 KB 0644
1.6.2.3.txt File 781 B 0644
1.6.2.4.txt File 1.32 KB 0644
1.6.2.5.txt File 688 B 0644
1.6.2.txt File 5.75 KB 0644
1.6.3.1.txt File 343 B 0644
1.6.3.2.txt File 2.22 KB 0644
1.6.3.3.txt File 1.35 KB 0644
1.6.3.4.txt File 1.18 KB 0644
1.6.3.txt File 6.63 KB 0644
1.6.4.1.txt File 1.86 KB 0644
1.6.4.2.txt File 1.18 KB 0644
1.6.4.3.txt File 1.12 KB 0644
1.6.4.4.txt File 1.01 KB 0644
1.6.4.5.txt File 605 B 0644
1.6.4.txt File 5.23 KB 0644
1.6.5.1.txt File 549 B 0644
1.6.5.2.txt File 581 B 0644
1.6.5.3.txt File 2.43 KB 0644
1.6.5.4.txt File 1.25 KB 0644
1.6.5.5.txt File 1.85 KB 0644
1.6.5.6.txt File 791 B 0644
1.6.5.7.txt File 771 B 0644
1.6.5.8.txt File 900 B 0644
1.6.5.9.txt File 581 B 0644
1.6.5.txt File 6.15 KB 0644
1.6.6.1.txt File 1.2 KB 0644
1.6.6.2.txt File 1.56 KB 0644
1.6.6.3.txt File 751 B 0644
1.6.6.txt File 9.24 KB 0644
1.7.0.1.txt File 1.26 KB 0644
1.7.0.2.txt File 1.44 KB 0644
1.7.0.3.txt File 1.15 KB 0644
1.7.0.4.txt File 888 B 0644
1.7.0.5.txt File 915 B 0644
1.7.0.6.txt File 365 B 0644
1.7.0.7.txt File 467 B 0644
1.7.0.8.txt File 452 B 0644
1.7.0.9.txt File 219 B 0644
1.7.0.txt File 8.56 KB 0644
1.7.1.1.txt File 3.74 KB 0644
1.7.1.2.txt File 1.04 KB 0644
1.7.1.3.txt File 452 B 0644
1.7.1.4.txt File 219 B 0644
1.7.1.txt File 2.87 KB 0644
1.7.10.1.txt File 3 KB 0644
1.7.10.2.txt File 3.36 KB 0644
1.7.10.3.txt File 1.83 KB 0644
1.7.10.4.txt File 1.03 KB 0644
1.7.10.5.txt File 397 B 0644
1.7.10.txt File 8.81 KB 0644
1.7.11.1.txt File 224 B 0644
1.7.11.2.txt File 2.24 KB 0644
1.7.11.3.txt File 2.26 KB 0644
1.7.11.4.txt File 1.14 KB 0644
1.7.11.5.txt File 1.26 KB 0644
1.7.11.6.txt File 3.36 KB 0644
1.7.11.7.txt File 1.91 KB 0644
1.7.11.txt File 5.38 KB 0644
1.7.12.1.txt File 5.66 KB 0644
1.7.12.2.txt File 1.73 KB 0644
1.7.12.3.txt File 1.3 KB 0644
1.7.12.4.txt File 712 B 0644
1.7.12.txt File 5.21 KB 0644
1.7.2.1.txt File 806 B 0644
1.7.2.2.txt File 695 B 0644
1.7.2.3.txt File 1.32 KB 0644
1.7.2.4.txt File 452 B 0644
1.7.2.5.txt File 219 B 0644
1.7.2.txt File 5.84 KB 0644
1.7.3.1.txt File 425 B 0644
1.7.3.2.txt File 149 B 0644
1.7.3.3.txt File 2.03 KB 0644
1.7.3.4.txt File 1.6 KB 0644
1.7.3.5.txt File 1.42 KB 0644
1.7.3.txt File 2.58 KB 0644
1.7.4.1.txt File 899 B 0644
1.7.4.2.txt File 2.24 KB 0644
1.7.4.3.txt File 1.22 KB 0644
1.7.4.4.txt File 1.26 KB 0644
1.7.4.5.txt File 127 B 0644
1.7.4.txt File 6.35 KB 0644
1.7.5.1.txt File 1.86 KB 0644
1.7.5.2.txt File 2.14 KB 0644
1.7.5.3.txt File 1.08 KB 0644
1.7.5.4.txt File 754 B 0644
1.7.5.txt File 5.2 KB 0644
1.7.6.1.txt File 2.2 KB 0644
1.7.6.2.txt File 245 B 0644
1.7.6.3.txt File 792 B 0644
1.7.6.4.txt File 1.23 KB 0644
1.7.6.5.txt File 969 B 0644
1.7.6.6.txt File 587 B 0644
1.7.6.txt File 5.38 KB 0644
1.7.7.1.txt File 2.38 KB 0644
1.7.7.2.txt File 1.59 KB 0644
1.7.7.3.txt File 696 B 0644
1.7.7.4.txt File 444 B 0644
1.7.7.5.txt File 481 B 0644
1.7.7.6.txt File 791 B 0644
1.7.7.7.txt File 334 B 0644
1.7.7.txt File 5.28 KB 0644
1.7.8.1.txt File 1.4 KB 0644
1.7.8.2.txt File 2.86 KB 0644
1.7.8.3.txt File 431 B 0644
1.7.8.4.txt File 921 B 0644
1.7.8.5.txt File 606 B 0644
1.7.8.6.txt File 621 B 0644
1.7.8.txt File 6.2 KB 0644
1.7.9.1.txt File 2.4 KB 0644
1.7.9.2.txt File 2.64 KB 0644
1.7.9.3.txt File 1.91 KB 0644
1.7.9.4.txt File 887 B 0644
1.7.9.5.txt File 731 B 0644
1.7.9.6.txt File 432 B 0644
1.7.9.7.txt File 371 B 0644
1.7.9.txt File 4.27 KB 0644
1.8.0.1.txt File 2.4 KB 0644
1.8.0.2.txt File 1.22 KB 0644
1.8.0.3.txt File 424 B 0644
1.8.0.txt File 10.81 KB 0644
1.8.1.1.txt File 3.49 KB 0644
1.8.1.2.txt File 991 B 0644
1.8.1.3.txt File 1.7 KB 0644
1.8.1.4.txt File 337 B 0644
1.8.1.5.txt File 1.89 KB 0644
1.8.1.6.txt File 1.53 KB 0644
1.8.1.txt File 9.4 KB 0644
1.8.2.1.txt File 4.45 KB 0644
1.8.2.2.txt File 2.38 KB 0644
1.8.2.3.txt File 672 B 0644
1.8.2.txt File 21.62 KB 0644
1.8.3.1.txt File 433 B 0644
1.8.3.2.txt File 2.35 KB 0644
1.8.3.3.txt File 1.74 KB 0644
1.8.3.4.txt File 700 B 0644
1.8.3.txt File 17.91 KB 0644
1.8.4.1.txt File 2.94 KB 0644
1.8.4.2.txt File 3.22 KB 0644
1.8.4.3.txt File 2.16 KB 0644
1.8.4.4.txt File 342 B 0644
1.8.4.5.txt File 421 B 0644
1.8.4.txt File 20.74 KB 0644
1.8.5.1.txt File 254 B 0644
1.8.5.2.txt File 656 B 0644
1.8.5.3.txt File 859 B 0644
1.8.5.4.txt File 1.87 KB 0644
1.8.5.5.txt File 1.43 KB 0644
1.8.5.6.txt File 1.65 KB 0644
1.8.5.txt File 19.87 KB 0644
1.9.0.txt File 14.84 KB 0644
1.9.1.txt File 2.35 KB 0644
1.9.2.txt File 2.74 KB 0644
1.9.3.txt File 635 B 0644
1.9.4.txt File 607 B 0644
1.9.5.txt File 1.64 KB 0644
2.0.0.txt File 15.54 KB 0644
2.0.1.txt File 5.05 KB 0644
2.0.2.txt File 1.32 KB 0644
2.0.3.txt File 592 B 0644
2.0.4.txt File 153 B 0644
2.0.5.txt File 1.64 KB 0644
2.1.0.txt File 16.93 KB 0644
2.1.1.txt File 1.76 KB 0644
2.1.2.txt File 768 B 0644
2.1.3.txt File 970 B 0644
2.1.4.txt File 1.64 KB 0644
2.10.0.txt File 29.42 KB 0644
2.10.1.txt File 5.6 KB 0644
2.10.2.txt File 5.17 KB 0644
2.10.3.txt File 2.3 KB 0644
2.10.4.txt File 124 B 0644
2.10.5.txt File 561 B 0644
2.11.0.txt File 27.34 KB 0644
2.11.1.txt File 6.65 KB 0644
2.11.2.txt File 479 B 0644
2.11.3.txt File 124 B 0644
2.11.4.txt File 561 B 0644
2.12.0.txt File 21.57 KB 0644
2.12.1.txt File 1.57 KB 0644
2.12.2.txt File 3.53 KB 0644
2.12.3.txt File 2.48 KB 0644
2.12.4.txt File 124 B 0644
2.12.5.txt File 561 B 0644
2.13.0.txt File 27.56 KB 0644
2.13.1.txt File 4.91 KB 0644
2.13.2.txt File 2.13 KB 0644
2.13.3.txt File 2.33 KB 0644
2.13.4.txt File 1.05 KB 0644
2.13.5.txt File 124 B 0644
2.13.6.txt File 561 B 0644
2.13.7.txt File 780 B 0644
2.14.0.txt File 22.2 KB 0644
2.14.1.txt File 124 B 0644
2.14.2.txt File 4.38 KB 0644
2.14.3.txt File 3.92 KB 0644
2.14.4.txt File 167 B 0644
2.15.0.txt File 21.46 KB 0644
2.15.1.txt File 3.35 KB 0644
2.15.2.txt File 1.85 KB 0644
2.16.0.txt File 20.26 KB 0644
2.16.1.txt File 305 B 0644
2.16.2.txt File 1.06 KB 0644
2.16.3.txt File 1.71 KB 0644
2.16.4.txt File 167 B 0644
2.17.0.txt File 17.46 KB 0644
2.17.1.txt File 617 B 0644
2.2.0.txt File 13.03 KB 0644
2.2.1.txt File 1.63 KB 0644
2.2.2.txt File 2.3 KB 0644
2.2.3.txt File 284 B 0644
2.3.0.txt File 12.56 KB 0644
2.3.1.txt File 1.95 KB 0644
2.3.10.txt File 711 B 0644
2.3.2.txt File 2.94 KB 0644
2.3.3.txt File 1.49 KB 0644
2.3.4.txt File 1.12 KB 0644
2.3.5.txt File 1.73 KB 0644
2.3.6.txt File 400 B 0644
2.3.7.txt File 761 B 0644
2.3.8.txt File 814 B 0644
2.3.9.txt File 284 B 0644
2.4.0.txt File 21.59 KB 0644
2.4.1.txt File 1.62 KB 0644
2.4.10.txt File 711 B 0644
2.4.11.txt File 424 B 0644
2.4.12.txt File 479 B 0644
2.4.2.txt File 1.91 KB 0644
2.4.3.txt File 3 KB 0644
2.4.4.txt File 1.2 KB 0644
2.4.5.txt File 1.04 KB 0644
2.4.6.txt File 744 B 0644
2.4.7.txt File 2.16 KB 0644
2.4.8.txt File 704 B 0644
2.4.9.txt File 284 B 0644
2.5.0.txt File 25.51 KB 0644
2.5.1.txt File 2.79 KB 0644
2.5.2.txt File 2.59 KB 0644
2.5.3.txt File 565 B 0644
2.5.4.txt File 709 B 0644
2.5.5.txt File 420 B 0644
2.5.6.txt File 475 B 0644
2.6.0.txt File 16.05 KB 0644
2.6.1.txt File 705 B 0644
2.6.2.txt File 2.62 KB 0644
2.6.3.txt File 4.79 KB 0644
2.6.4.txt File 2.11 KB 0644
2.6.5.txt File 2.48 KB 0644
2.6.6.txt File 420 B 0644
2.6.7.txt File 475 B 0644
2.7.0.txt File 17.09 KB 0644
2.7.1.txt File 3.45 KB 0644
2.7.2.txt File 1.7 KB 0644
2.7.3.txt File 2.54 KB 0644
2.7.4.txt File 420 B 0644
2.7.5.txt File 544 B 0644
2.7.6.txt File 951 B 0644
2.8.0.txt File 19.22 KB 0644
2.8.1.txt File 255 B 0644
2.8.2.txt File 2.64 KB 0644
2.8.3.txt File 4.32 KB 0644
2.8.4.txt File 2.99 KB 0644
2.8.5.txt File 475 B 0644
2.8.6.txt File 122 B 0644
2.9.0.txt File 21.32 KB 0644
2.9.1.txt File 4.81 KB 0644
2.9.2.txt File 427 B 0644
2.9.3.txt File 7.29 KB 0644
2.9.4.txt File 4.28 KB 0644
2.9.5.txt File 122 B 0644