1. 18 11月, 2018 26 次提交
    • J
      Merge branch 'ab/rebase-in-c-escape-hatch' · 4520c233
      Junio C Hamano 提交于
      The recently merged "rebase in C" has an escape hatch to use the
      scripted version when necessary, but it hasn't been documented,
      which has been corrected.
      
      * ab/rebase-in-c-escape-hatch:
        tests: add a special setup where rebase.useBuiltin is off
        rebase doc: document rebase.useBuiltin
      4520c233
    • J
      Merge branch 'js/rebase-am-options' · 137c1f2f
      Junio C Hamano 提交于
      The way "git rebase" parses and forwards the command line options
      meant for underlying "git am" has been revamped, which fixed for
      options with parameters that were not passed correctly.
      
      * js/rebase-am-options:
        rebase: validate -C<n> and --whitespace=<mode> parameters early
        rebase: really just passthru the `git am` options
      137c1f2f
    • J
      Merge branch 'sg/ref-filter-wo-repository' · 7bdebaa6
      Junio C Hamano 提交于
      "git ls-remote --sort=<thing>" can feed an object that is not yet
      available into the comparison machinery and segfault, which has
      been corrected to check such a request upfront and reject it.
      
      * sg/ref-filter-wo-repository:
        ref-filter: don't look for objects when outside of a repository
      7bdebaa6
    • J
      Merge branch 'nd/doc-extensions' · 56e4af3d
      Junio C Hamano 提交于
      Doc update.
      
      * nd/doc-extensions:
        doc: move extensions.worktreeConfig to the right place
      56e4af3d
    • J
      Merge branch 'js/fuzz-cxxflags' · 7b9bb387
      Junio C Hamano 提交于
      The build procedure to link for fuzzing test has been made
      customizable with a new Makefile variable.
      
      * js/fuzz-cxxflags:
        Makefile: use FUZZ_CXXFLAGS for linking fuzzers
      7b9bb387
    • J
      Merge branch 'js/mingw-msdn-url' · b8a92091
      Junio C Hamano 提交于
      The URL to an MSDN page in a comment has been updated.
      
      * js/mingw-msdn-url:
        mingw: replace an obsolete link with the superseding one
      b8a92091
    • J
      Merge branch 'js/mingw-create-hard-link' · c56aa1d2
      Junio C Hamano 提交于
      Windows update.
      
      * js/mingw-create-hard-link:
        mingw: use `CreateHardLink()` directly
      c56aa1d2
    • J
      Merge branch 'js/config-sequence' · 744fad66
      Junio C Hamano 提交于
      A sanity check for start-up sequence has been added in the config
      API codepath.
      
      * js/config-sequence:
        config: report a bug if git_dir exists without commondir
      744fad66
    • J
      Merge branch 'lj/mingw-pthread-cond' · 06a2d241
      Junio C Hamano 提交于
      Code simplification.
      
      * lj/mingw-pthread-cond:
        win32: replace pthread_cond_*() with much simpler code
      06a2d241
    • J
      Merge branch 'nd/command-list-gen-fix' · ca6e972d
      Junio C Hamano 提交于
      Build tweak.
      
      * nd/command-list-gen-fix:
        build: fix broken command-list.h generation with core.autocrlf
      ca6e972d
    • J
      Merge branch 'ag/p3400-force-checkout' · 0466aebd
      Junio C Hamano 提交于
      Perf test tweak.
      
      * ag/p3400-force-checkout:
        p3400: replace calls to `git checkout -b' by `git checkout -B'
      0466aebd
    • J
      Merge branch 'cb/notes-freeing-always-null-fix' · e14af5f7
      Junio C Hamano 提交于
      Code cleanup.
      
      * cb/notes-freeing-always-null-fix:
        builtin/notes: remove unnecessary free
      e14af5f7
    • J
      Merge branch 'js/rebase-r-and-merge-head' · 0de3a73e
      Junio C Hamano 提交于
      Bugfix for the recently graduated "git rebase --rebase-merges".
      
      * js/rebase-r-and-merge-head:
        status: rebase and merge can be in progress at the same time
        built-in rebase --skip/--abort: clean up stale .git/<name> files
        rebase -i: include MERGE_HEAD into files to clean up
        rebase -r: do not write MERGE_HEAD unless needed
        rebase -r: demonstrate bug with conflicting merges
      0de3a73e
    • J
      Merge branch 'js/apply-recount-allow-noop' · bda53f41
      Junio C Hamano 提交于
      When editing a patch in a "git add -i" session, a hunk could be
      made to no-op.  The "git apply" program used to reject a patch with
      such a no-op hunk to catch user mistakes, but it is now updated to
      explicitly allow a no-op hunk in an edited patch.
      
      * js/apply-recount-allow-noop:
        apply --recount: allow "no-op hunks"
      bda53f41
    • J
      Merge branch 'ra/rev-parse-exclude-glob' · c72431ff
      Junio C Hamano 提交于
      "rev-parse --exclude=<pattern> --branches=<pattern>" etc. did not
      quite work, which has been corrected.
      
      * ra/rev-parse-exclude-glob:
        refs: fix some exclude patterns being ignored
        refs: show --exclude failure with --branches/tags/remotes=glob
      c72431ff
    • J
      Merge branch 'js/builtin-rebase-perf-fix' · bb6dd0ec
      Junio C Hamano 提交于
      Code clean-up with correction to make the reimplemented "git
      rebase" a more faithful rewrite of the original, which also regains
      performance.
      
      * js/builtin-rebase-perf-fix:
        built-in rebase: reinstate `checkout -q` behavior where appropriate
        rebase: prepare reset_head() for more flags
        rebase: consolidate clean-up code before leaving reset_head()
      bb6dd0ec
    • J
      Merge branch 'js/mailmap' · 5d90463e
      Junio C Hamano 提交于
      Update the mailmap to unify multiple entries for the authors with
      commits since v2.10.
      
      * js/mailmap:
        Update .mailmap
      5d90463e
    • J
      Merge branch 'js/rebase-autostash-detach-fix' · 9aefd353
      Junio C Hamano 提交于
      "git rebase --autostash" did not correctly re-attach the HEAD at times.
      
      * js/rebase-autostash-detach-fix:
        built-in rebase --autostash: leave the current branch alone if possible
        built-in rebase: demonstrate regression with --autostash
      9aefd353
    • J
      Merge branch 'ab/range-diff-no-patch' · a5170794
      Junio C Hamano 提交于
      The "--no-patch" option, which can be used to get a high-level
      overview without the actual line-by-line patch difference shown, of
      the "range-diff" command was earlier broken, which has been
      corrected.
      
      * ab/range-diff-no-patch:
        range-diff: make diff option behavior (e.g. --stat) consistent
        range-diff: fix regression in passing along diff options
        range-diff doc: add a section about output stability
      a5170794
    • J
      Merge branch 'jk/verify-sig-merge-into-void' · 6d2035ee
      Junio C Hamano 提交于
      "git merge" and "git pull" that merges into an unborn branch used
      to completely ignore "--verify-signatures", which has been
      corrected.
      
      * jk/verify-sig-merge-into-void:
        pull: handle --verify-signatures for unborn branch
        merge: handle --verify-signatures for unborn branch
        merge: extract verify_merge_signature() helper
      6d2035ee
    • J
      Merge branch 'js/mingw-res-rebuild' · 39847644
      Junio C Hamano 提交于
      Windows build update.
      
      * js/mingw-res-rebuild:
        Windows: force-recompile git.res for differing architectures
      39847644
    • J
      Merge branch 'jk/unused-parameter-fixes' · ab96f28b
      Junio C Hamano 提交于
      Various functions have been audited for "-Wunused-parameter" warnings
      and bugs in them got fixed.
      
      * jk/unused-parameter-fixes:
        midx: double-check large object write loop
        assert NOARG/NONEG behavior of parse-options callbacks
        parse-options: drop OPT_DATE()
        apply: return -1 from option callback instead of calling exit(1)
        cat-file: report an error on multiple --batch options
        tag: mark "--message" option with NONEG
        show-branch: mark --reflog option as NONEG
        format-patch: mark "--no-numbered" option with NONEG
        status: mark --find-renames option with NONEG
        cat-file: mark batch options with NONEG
        pack-objects: mark index-version option as NONEG
        ls-files: mark exclude options as NONEG
        am: handle --no-patch-format option
        apply: mark include/exclude options as NONEG
      ab96f28b
    • J
      Merge branch 'jk/curl-ldflags' · fa2f2f08
      Junio C Hamano 提交于
      The way -lcurl library gets linked has been simplified by taking
      advantage of the fact that we can just ask curl-config command how.
      
      * jk/curl-ldflags:
        build: link with curl-defined linker flags
      fa2f2f08
    • J
      Merge branch 'mg/gpg-fingerprint-test' · 95a3ef5e
      Junio C Hamano 提交于
      Add a few tests for a topic already in 'master'.
      
      * mg/gpg-fingerprint-test:
        t/t7510-signed-commit.sh: add signing subkey to Eris Discordia key
        t/t7510-signed-commit.sh: Add %GP to custom format checks
      95a3ef5e
    • J
      Merge branch 'nd/pthreads' · 26b80a84
      Junio C Hamano 提交于
      The codebase has been cleaned up to reduce "#ifndef NO_PTHREADS".
      
      * nd/pthreads:
        Clean up pthread_create() error handling
        read-cache.c: initialize copy_len to shut up gcc 8
        read-cache.c: reduce branching based on HAVE_THREADS
        read-cache.c: remove #ifdef NO_PTHREADS
        pack-objects: remove #ifdef NO_PTHREADS
        preload-index.c: remove #ifdef NO_PTHREADS
        grep: clean up num_threads handling
        grep: remove #ifdef NO_PTHREADS
        attr.c: remove #ifdef NO_PTHREADS
        name-hash.c: remove #ifdef NO_PTHREADS
        index-pack: remove #ifdef NO_PTHREADS
        send-pack.c: move async's #ifdef NO_PTHREADS back to run-command.c
        run-command.h: include thread-utils.h instead of pthread.h
        thread-utils: macros to unconditionally compile pthreads API
      26b80a84
    • J
      Merge branch 'ds/reachable-topo-order' · 62ca33e0
      Junio C Hamano 提交于
      The revision walker machinery learned to take advantage of the
      commit generation numbers stored in the commit-graph file.
      
      * ds/reachable-topo-order:
        t6012: make rev-list tests more interesting
        revision.c: generation-based topo-order algorithm
        commit/revisions: bookkeeping before refactoring
        revision.c: begin refactoring --topo-order logic
        test-reach: add rev-list tests
        test-reach: add run_three_modes method
        prio-queue: add 'peek' operation
      62ca33e0
  2. 16 11月, 2018 9 次提交
  3. 14 11月, 2018 3 次提交
  4. 13 11月, 2018 2 次提交