1. 02 9月, 2016 2 次提交
  2. 01 9月, 2016 5 次提交
  3. 31 8月, 2016 2 次提交
  4. 30 8月, 2016 2 次提交
  5. 29 8月, 2016 1 次提交
  6. 28 8月, 2016 3 次提交
  7. 27 8月, 2016 6 次提交
  8. 26 8月, 2016 7 次提交
    • J
      Prepare for 2.10.0-rc2 · 5cb0d5ad
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      5cb0d5ad
    • J
      Merge branch 'ja/i18n' · 0fd6c99b
      Junio C Hamano 提交于
      The recent i18n patch we added during this cycle did a bit too much
      refactoring of the messages to avoid word-legos; the repetition has
      been reduced to help translators.
      
      * ja/i18n:
        i18n: simplify numeric error reporting
        i18n: fix git rebase interactive commit messages
        i18n: fix typos for translation
      0fd6c99b
    • J
      Merge branch 'bw/mingw-avoid-inheriting-fd-to-lockfile' · 3dc01702
      Junio C Hamano 提交于
      The tempfile (hence its user lockfile) API lets the caller to open
      a file descriptor to a temporary file, write into it and then
      finalize it by first closing the filehandle and then either
      removing or renaming the temporary file.  When the process spawns a
      subprocess after obtaining the file descriptor, and if the
      subprocess has not exited when the attempt to remove or rename is
      made, the last step fails on Windows, because the subprocess has
      the file descriptor still open.  Open tempfile with O_CLOEXEC flag
      to avoid this (on Windows, this is mapped to O_NOINHERIT).
      
      * bw/mingw-avoid-inheriting-fd-to-lockfile:
        mingw: ensure temporary file handles are not inherited by child processes
        t6026-merge-attr: child processes must not inherit index.lock handles
      3dc01702
    • J
      Merge branch 'dg/document-git-c-in-git-config-doc' · a8998453
      Junio C Hamano 提交于
      The "git -c var[=val] cmd" facility to append a configuration
      variable definition at the end of the search order was described in
      git(1) manual page, but not in git-config(1), which was more likely
      place for people to look for when they ask "can I make a one-shot
      override, and if so how?"
      
      * dg/document-git-c-in-git-config-doc:
        doc: mention `git -c` in git-config(1)
      a8998453
    • J
      Merge branch 'js/no-html-bypass-on-windows' · 13e11ff7
      Junio C Hamano 提交于
      On Windows, help.browser configuration variable used to be ignored,
      which has been corrected.
      
      * js/no-html-bypass-on-windows:
        Revert "display HTML in default browser using Windows' shell API"
      13e11ff7
    • J
      Merge branch 'hv/doc-commit-reference-style' · a1f0b4e2
      Junio C Hamano 提交于
      A small doc update.
      
      * hv/doc-commit-reference-style:
        SubmittingPatches: document how to reference previous commits
      a1f0b4e2
    • T
      git ls-files: text=auto eol=lf is supported in Git 2.10 · 41a616da
      Torsten Bögershausen 提交于
      The man page for `git ls-files --eol` mentions the combination
      of text attributes "text=auto eol=lf" or "text=auto eol=crlf" as not
      supported yet, but may be in the future.
      
      Now they are supported.
      Signed-off-by: NTorsten Bögershausen <tboegi@web.de>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      41a616da
  9. 25 8月, 2016 2 次提交
  10. 24 8月, 2016 5 次提交
  11. 21 8月, 2016 1 次提交
  12. 20 8月, 2016 4 次提交
    • J
      Git 2.10-rc1 · 2632c897
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      2632c897
    • J
      Merge branch 'lt/gpg-show-long-key-in-signature-verification' · 83d9eb0a
      Junio C Hamano 提交于
      "git log --show-signature" and other commands that display the
      verification status of PGP signature now shows the longer key-id,
      as 32-bit key-id is so last century.
      
      * lt/gpg-show-long-key-in-signature-verification:
        gpg-interface: prefer "long" key format output when verifying pgp signatures
      83d9eb0a
    • J
      Merge branch 'ab/hooks' · d05d0e99
      Junio C Hamano 提交于
      "git rev-parse --git-path hooks/<hook>" learned to take
      core.hooksPath configuration variable (introduced during 2.9 cycle)
      into account.
      
      * ab/hooks:
        rev-parse: respect core.hooksPath in --git-path
      d05d0e99
    • J
      Merge branch 'jk/difftool-command-not-found' · 331f06d6
      Junio C Hamano 提交于
      "git difftool" by default ignores the error exit from the backend
      commands it spawns, because often they signal that they found
      differences by exiting with a non-zero status code just like "diff"
      does; the exit status codes 126 and above however are special in
      that they are used to signal that the command is not executable,
      does not exist, or killed by a signal.  "git difftool" has been
      taught to notice these exit status codes.
      
      * jk/difftool-command-not-found:
        difftool: always honor fatal error exit codes
      331f06d6