1. 22 3月, 2017 12 次提交
  2. 21 3月, 2017 1 次提交
  3. 17 3月, 2017 10 次提交
    • J
      Preparing for 2.12.1 · 7c9c2f8c
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      7c9c2f8c
    • J
      Merge branch 'js/realpath-pathdup-fix' into maint · 2846ef3e
      Junio C Hamano 提交于
      Git v2.12 was shipped with an embarrassing breakage where various
      operations that verify paths given from the user stopped dying when
      seeing an issue, and instead later triggering segfault.
      ... and then to down to 'maint'.
      
      * js/realpath-pathdup-fix:
        real_pathdup(): fix callsites that wanted it to die on error
        t1501: demonstrate NULL pointer access with invalid GIT_WORK_TREE
      2846ef3e
    • J
      Merge branch 'mm/two-more-xstrfmt' into maint · f989ac27
      Junio C Hamano 提交于
      Code clean-up and a string truncation fix.
      
      * mm/two-more-xstrfmt:
        bisect_next_all: convert xsnprintf to xstrfmt
        stop_progress_msg: convert xsnprintf to xstrfmt
      f989ac27
    • J
      Merge branch 'vn/line-log-memcpy-size-fix' into maint · 3d0449de
      Junio C Hamano 提交于
      The command-line parsing of "git log -L" copied internal data
      structures using incorrect size on ILP32 systems.
      
      * vn/line-log-memcpy-size-fix:
        line-log: use COPY_ARRAY to fix mis-sized memcpy
      3d0449de
    • J
      Merge branch 'ax/line-log-range-merge-fix' into maint · c5bd9e5a
      Junio C Hamano 提交于
      The code to parse "git log -L..." command line was buggy when there
      are many ranges specified with -L; overrun of the allocated buffer
      has been fixed.
      
      * ax/line-log-range-merge-fix:
        line-log.c: prevent crash during union of too many ranges
      c5bd9e5a
    • J
      Merge branch 'jk/add-i-patch-do-prompt' into maint · abe62a40
      Junio C Hamano 提交于
      The patch subcommand of "git add -i" was meant to have paths
      selection prompt just like other subcommand, unlike "git add -p"
      directly jumps to hunk selection.  Recently, this was broken and
      "add -i" lost the paths selection dialog, but it now has been
      fixed.
      
      * jk/add-i-patch-do-prompt:
        add--interactive: fix missing file prompt for patch mode with "-i"
      abe62a40
    • J
      Merge branch 'jt/http-base-url-update-upon-redirect' into maint · 68e12d7d
      Junio C Hamano 提交于
      When a redirected http transport gets an error during the
      redirected request, we ignored the error we got from the server,
      and ended up giving a not-so-useful error message.
      
      * jt/http-base-url-update-upon-redirect:
        http: attempt updating base URL only if no error
      68e12d7d
    • J
      Merge branch 'js/travis-32bit-linux' into maint · 8e87cbc7
      Junio C Hamano 提交于
      Add 32-bit Linux variant to the set of platforms to be tested with
      Travis CI.
      
      * js/travis-32bit-linux:
        Travis: also test on 32-bit Linux
      8e87cbc7
    • J
      Merge branch 'jh/mingw-openssl-sha1' into maint · 890d7650
      Junio C Hamano 提交于
      Windows port wants to use OpenSSL's implementation of SHA-1
      routines, so let them.
      
      * jh/mingw-openssl-sha1:
        mingw: use OpenSSL's SHA-1 routines
      890d7650
    • J
      Merge branch 'jk/http-auth' into maint · d880bfd9
      Junio C Hamano 提交于
      Reduce authentication round-trip over HTTP when the server supports
      just a single authentication method.
      
      * jk/http-auth:
        http: add an "auto" mode for http.emptyauth
        http: restrict auth methods to what the server advertises
      d880bfd9
  4. 15 3月, 2017 1 次提交
    • M
      git-status: make porcelain more robust · b9e2bc56
      Michael J Gruber 提交于
      git status provides a porcelain mode for porcelain writers with a
      supposedly stable (plumbing) interface.
      7a76c28f ("status: disable translation when --porcelain is used", 2014-03-20)
      made sure that ahead/behind info is not translated (i.e. is stable).
      
      Make sure that the remaining two strings (initial commit, detached head)
      are stable, too.
      
      These changes are for the v1 porcelain interface. While we do have a perfectly
      stable v2 porcelain interface now, some tools (such as
      powerline-gitstatus) are written against v1 and profit from fixing v1
      without any changes on their side.
      Signed-off-by: NMichael J Gruber <git@drmicha.warpmail.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      b9e2bc56
  5. 14 3月, 2017 1 次提交
    • J
      http-walker: fix buffer underflow processing remote alternates · d61434ae
      Jeff King 提交于
      If we parse a remote alternates (or http-alternates), we
      expect relative lines like:
      
        ../../foo.git/objects
      
      which we convert into "$URL/../foo.git/" (and then use that
      as a base for fetching more objects).
      
      But if the remote feeds us nonsense like just:
      
        ../
      
      we will try to blindly strip the last 7 characters, assuming
      they contain the string "objects". Since we don't _have_ 7
      characters at all, this results in feeding a small negative
      value to strbuf_add(), which converts it to a size_t,
      resulting in a big positive value. This should consistently
      fail (since we can't generall allocate the max size_t minus
      7 bytes), so there shouldn't be any security implications.
      
      Let's fix this by using strbuf_strip_suffix() to drop the
      characters we want. If they're not present, we'll ignore the
      alternate (in theory we could use it as-is, but the rest of
      the http-walker code unconditionally tacks "objects/" back
      on, so it is it not prepared to handle such a case).
      Signed-off-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      d61434ae
  6. 09 3月, 2017 2 次提交
  7. 07 3月, 2017 3 次提交
    • J
      ewah: fix eword_t/uint64_t confusion · 3255e512
      Jeff King 提交于
      The ewah subsystem typedefs eword_t to be uint64_t, but some
      code uses a bare uint64_t. This isn't a bug now, but it's a
      potential maintenance problem if the definition of eword_t
      ever changes. Let's use the correct type.
      
      Note that we can't use COPY_ARRAY() here because the source
      and destination point to objects of different sizes. For
      that reason we'll also skip the usual "sizeof(*dst)" and use
      the real type, which should make it more clear that there's
      something tricky going on.
      Signed-off-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      3255e512
    • V
      line-log: use COPY_ARRAY to fix mis-sized memcpy · 07f546cd
      Vegard Nossum 提交于
      This memcpy meant to get the sizeof a "struct range", not a
      "range_set", as the former is what our array holds. Rather
      than swap out the types, let's convert this site to
      COPY_ARRAY, which avoids the problem entirely (and confirms
      that the src and dst types match).
      
      Note for curiosity's sake that this bug doesn't trigger on
      I32LP64 systems, but does on ILP32 systems. The mistaken
      "struct range_set" has two ints and a pointer. That's 16
      bytes on LP64, or 12 on ILP32. The correct "struct range"
      type has two longs, which is also 16 on LP64, but only 8 on
      ILP32.
      
      Likewise an IL32P64 system would experience the bug.
      Signed-off-by: NJeff King <peff@peff.net>
      Signed-off-by: NVegard Nossum <vegard.nossum@oracle.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      07f546cd
    • J
      Travis: also test on 32-bit Linux · 88dedd5e
      Johannes Schindelin 提交于
      When Git v2.9.1 was released, it had a bug that showed only on Windows
      and on 32-bit systems: our assumption that `unsigned long` can hold
      64-bit values turned out to be wrong.
      
      This could have been caught earlier if we had a Continuous Testing
      set up that includes a build and test run on 32-bit Linux.
      
      Let's do this (and take care of the Windows build later). This patch
      asks Travis CI to install a Docker image with 32-bit libraries and then
      goes on to build and test Git using this 32-bit setup.
      Signed-off-by: NJohannes Schindelin <johannes.schindelin@gmx.de>
      Signed-off-by: NLars Schneider <larsxschneider@gmail.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      88dedd5e
  8. 04 3月, 2017 2 次提交
    • A
      line-log.c: prevent crash during union of too many ranges · aaae0bf7
      Allan Xavier 提交于
      The existing implementation of range_set_union does not correctly
      reallocate memory, leading to a heap overflow when it attempts to union
      more than 24 separate line ranges.
      
      For struct range_set *out to grow correctly it must have out->nr set to
      the current size of the buffer when it is passed to range_set_grow.
      However, the existing implementation of range_set_union only updates
      out->nr at the end of the function, meaning that it is always zero
      before this. This results in range_set_grow never growing the buffer, as
      well as some of the union logic itself being incorrect as !out->nr is
      always true.
      
      The reason why 24 is the limit is that the first allocation of size 1
      ends up allocating a buffer of size 24 (due to the call to alloc_nr in
      ALLOC_GROW). This goes some way to explain why this hasn't been
      caught before.
      
      Fix the problem by correctly updating out->nr after reallocating the
      range_set. As this results in out->nr containing the same value as the
      variable o, replace o with out->nr as well.
      
      Finally, add a new test to help prevent the problem reoccurring in the
      future. Thanks to Vegard Nossum for writing the test.
      Signed-off-by: NAllan Xavier <allan.x.xavier@oracle.com>
      Reviewed-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      aaae0bf7
    • S
      contrib: git-remote-{bzr,hg} placeholders don't need Python · b8686c66
      Sebastian Schuberth 提交于
      It does not make sense for these placeholder scripts to depend on Python
      just because the real scripts do. At the example of Git for Windows, we
      would not even be able to see those warnings as it does not ship with
      Python. So just use plain shell scripts instead.
      Signed-off-by: NSebastian Schuberth <sschuberth@gmail.com>
      Reviewed-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      b8686c66
  9. 03 3月, 2017 2 次提交
    • J
      diff: do not short-cut CHECK_SIZE_ONLY check in diff_populate_filespec() · 12426e11
      Junio C Hamano 提交于
      Callers of diff_populate_filespec() can choose to ask only for the
      size of the blob without grabbing the blob data, and the function,
      after running lstat() when the filespec points at a working tree
      file, returns by copying the value in size field of the stat
      structure into the size field of the filespec when this is the case.
      
      However, this short-cut cannot be taken if the contents from the
      path needs to go through convert_to_git(), whose resulting real blob
      data may be different from what is in the working tree file.
      
      As "git diff --quiet" compares the .size fields of filespec
      structures to skip content comparison, this bug manifests as a
      false "there are differences" for a file that needs eol conversion,
      for example.
      Reported-by: NMike Crowe <mac@mcrowe.com>
      Helped-by: NTorsten Bögershausen <tboegi@web.de>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      12426e11
    • J
      add--interactive: fix missing file prompt for patch mode with "-i" · c852bd54
      Jeff King 提交于
      When invoked as "git add -i", each menu interactive menu
      option prompts the user to select a list of files. This
      includes the "patch" option, which gets the list before
      starting the hunk-selection loop.
      
      As "git add -p", it behaves differently, and jumps straight
      to the hunk selection loop.
      
      Since 0539d5e6 (i18n: add--interactive: mark patch prompt
      for translation, 2016-12-14), the "add -i" case mistakenly
      jumps to straight to the hunk-selection loop. Prior to that
      commit the distinction between the two cases was managed by
      the $patch_mode variable. That commit used $patch_mode for
      something else, and moved the old meaning to the "$cmd"
      variable.  But it forgot to update the $patch_mode check
      inside patch_update_cmd() which controls the file-list
      behavior.
      
      The simplest fix would be to change that line to check $cmd.
      But while we're here, let's use a less obscure name for this
      flag: $patch_mode_only, a boolean which tells whether we are
      in full-interactive mode or only in patch-mode.
      Reported-by: NHenrik Grubbström <grubba@grubba.org>
      Signed-off-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      c852bd54
  10. 02 3月, 2017 1 次提交
  11. 01 3月, 2017 5 次提交
    • R
      wrapper.c: remove unused gitmkstemps() function · b2d593a7
      Ramsay Jones 提交于
      The last call to the mkstemps() function was removed in commit 65948832
      ("wrapper.c: delete dead function git_mkstemps()", 22-04-2016). In order
      to support platforms without mkstemps(), this functionality was provided,
      along with a Makefile build variable (NO_MKSTEMPS), by the gitmkstemps()
      function. Remove the dead code, along with the defunct build machinery.
      Signed-off-by: NRamsay Jones <ramsay@ramsayjones.plus.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      b2d593a7
    • R
      wrapper.c: remove unused git_mkstemp() function · 34de5e4b
      Ramsay Jones 提交于
      The last caller of git_mkstemp() was removed in commit 6fec0a89
      ("verify_signed_buffer: use tempfile object", 16-06-2016). Since
      the introduction of the 'tempfile' APIs, along with git_mkstemp_mode,
      it is unlikely that new callers will materialize. Remove the dead
      code.
      Signed-off-by: NRamsay Jones <ramsay@ramsayjones.plus.com>
      Reviewed-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      34de5e4b
    • J
      http: attempt updating base URL only if no error · 8e27391a
      Jonathan Tan 提交于
      http.c supports HTTP redirects of the form
      
        http://foo/info/refs?service=git-upload-pack
        -> http://anything
        -> http://bar/info/refs?service=git-upload-pack
      
      (that is to say, as long as the Git part of the path and the query
      string is preserved in the final redirect destination, the intermediate
      steps can have any URL). However, if one of the intermediate steps
      results in an HTTP exception, a confusing "unable to update url base
      from redirection" message is printed instead of a Curl error message
      with the HTTP exception code.
      
      This was introduced by 2 commits. Commit c93c92f3 ("http: update base
      URLs when we see redirects", 2013-09-28) introduced a best-effort
      optimization that required checking if only the "base" part of the URL
      differed between the initial request and the final redirect destination,
      but it performed the check before any HTTP status checking was done. If
      something went wrong, the normal code path was still followed, so this
      did not cause any confusing error messages until commit 6628eb41 ("http:
      always update the base URL for redirects", 2016-12-06), which taught
      http to die if the non-"base" part of the URL differed.
      
      Therefore, teach http to check the HTTP status before attempting to
      check if only the "base" part of the URL differed. This commit teaches
      http_request_reauth to return early without updating options->base_url
      upon an error; the only invoker of this function that passes a non-NULL
      "options" is remote-curl.c (through "http_get_strbuf"), which only uses
      options->base_url for an informational message in the situations that
      this commit cares about (that is, when the return value is not HTTP_OK).
      
      The included test checks that the redirect scheme at the beginning of
      this commit message works, and that returning a 502 in the middle of the
      redirect scheme produces the correct result. Note that this is different
      from the test in commit 6628eb41 ("http: always update the base URL for
      redirects", 2016-12-06) in that this commit tests that a Git-shaped URL
      (http://.../info/refs?service=git-upload-pack) works, whereas commit
      6628eb41 tests that a non-Git-shaped URL
      (http://.../info/refs/foo?service=git-upload-pack) does not work (even
      though Git is processing that URL) and is an error that is fatal, not
      silently swallowed.
      Signed-off-by: NJonathan Tan <jonathantanmy@google.com>
      Acked-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      8e27391a
    • P
      docs/diffcore: unquote "Complete Rewrites" in headers · b803ae44
      Patrick Steinhardt 提交于
      The gitdiffcore documentation quotes the term "Complete Rewrites" in
      headers for no real gain. This would make sense if the term could be
      easily confused if not properly grouped together. But actually, the term
      is quite obvious and thus does not really need any quoting, especially
      regarding that it is not used anywhere else.
      
      But more importanly, this brings up a bug when rendering man pages: when
      trying to render quotes inside of a section header, we end up with
      quotes which have been misaligned to the end of line. E.g.
      
          diffcore-break: For Splitting Up Complete Rewrites
          --------------------------------------------------
      
      renders as
      
          DIFFCORE-BREAK: FOR SPLITTING UP  COMPLETE REWRITES""
      
      , which is obviously wrong. While this is fixable for the man pages by
      using double-quotes (e.g. ""COMPLETE REWRITES""), this again breaks it
      for our generated HTML pages.
      
      So fix the issue by simply dropping quotes inside of section headers,
      which is currently only done for the term "Complete Rewrites".
      Signed-off-by: NPatrick Steinhardt <ps@pks.im>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      b803ae44
    • P
      1aa38199