1. 20 11月, 2015 4 次提交
  2. 10 11月, 2015 1 次提交
    • D
      git-svn: improve rebase/mkdirs performance · 82625748
      Dair Grant 提交于
      Processing empty_dir directives becomes extremely slow for svn
      repositories with a large enough history.
      
      This is due to using a single hash to store the list of empty
      directories, with the expensive step being purging items from
      that hash using grep+delete.
      
      Storing directories in a hash of hashes improves the performance
      of this purge step and removes a potentially lengthy delay after
      every rebase/mkdirs command.
      
      The svn repository with this behaviour has 110K commits with
      unhandled.log containing 170K empty_dir directives.
      
      This takes 10 minutes to process when using a single hash, vs
      3 seconds with a hash of hashes.
      Signed-off-by: NDair Grant <dair@feralinteractive.com>
      Signed-off-by: NEric Wong <normalperson@yhbt.net>
      82625748
  3. 06 11月, 2015 19 次提交
  4. 05 11月, 2015 8 次提交
  5. 04 11月, 2015 8 次提交
    • J
      Sync with maint · aa826b65
      Junio C Hamano 提交于
      aa826b65
    • J
      Merge branch 'mk/blame-error-message' into maint · fdca2bed
      Junio C Hamano 提交于
      The error message from "git blame --contents --reverse" incorrectly
      talked about "--contents --children".
      
      * mk/blame-error-message:
        blame: fix option name in error message
      fdca2bed
    • J
      Merge branch 'jk/merge-file-exit-code' into maint · 5c15ca0b
      Junio C Hamano 提交于
      "git merge-file" tried to signal how many conflicts it found, which
      obviously would not work well when there are too many of them.
      
      * jk/merge-file-exit-code:
        merge-file: clamp exit code to maximum 127
      5c15ca0b
    • J
      Merge branch 'dt/name-hash-dir-entry-fix' into maint · 3a27eec4
      Junio C Hamano 提交于
      The name-hash subsystem that is used to cope with case insensitive
      filesystems keeps track of directories and their on-filesystem
      cases for all the paths in the index by holding a pointer to a
      randomly chosen cache entry that is inside the directory (for its
      ce->ce_name component).  This pointer was not updated even when the
      cache entry was removed from the index, leading to use after free.
      This was fixed by recording the path for each directory instead of
      borrowing cache entries and restructuring the API somewhat.
      
      * dt/name-hash-dir-entry-fix:
        name-hash: don't reuse cache_entry in dir_entry
      3a27eec4
    • J
      Merge branch 'jc/am-3-fallback-regression-fix' into maint · ced2321a
      Junio C Hamano 提交于
      "git am -3" had a small regression where it is aborted in its error
      handling codepath when underlying merge-recursive failed in certain
      ways, as it assumed that the internal call to merge-recursive will
      never die, which is not the case (yet).
      
      * jc/am-3-fallback-regression-fix:
        am -3: do not let failed merge from completing the error codepath
      ced2321a
    • J
      Merge branch 'jc/usage-stdin' into maint · f5f76845
      Junio C Hamano 提交于
      The synopsis text and the usage string of subcommands that read
      list of things from the standard input are often shown as if they
      only take input from a file on a filesystem, which was misleading.
      
      * jc/usage-stdin:
        usage: do not insist that standard input must come from a file
      f5f76845
    • J
      Merge branch 'rt/placeholder-in-usage' into maint · 14f905ca
      Junio C Hamano 提交于
      A couple of commands still showed "[options]" in their usage string
      to note where options should come on their command line, but we
      spell that "[<options>]" in most places these days.
      
      * rt/placeholder-in-usage:
        am, credential-cache: add angle brackets to usage string
      14f905ca
    • J
      Merge branch 'dt/t7063-fix-flaky-test' into maint · ccb47391
      Junio C Hamano 提交于
      * dt/t7063-fix-flaky-test:
        t7063: fix flaky untracked-cache test
      ccb47391