1. 26 6月, 2015 9 次提交
    • J
      Merge branch 'sg/merge-summary-config' into maint · ebf4fc90
      Junio C Hamano 提交于
      Doc updates.
      
      * sg/merge-summary-config:
        Documentation: include 'merge.branchdesc' for merge and config as well
      ebf4fc90
    • J
      Merge branch 'jk/make-fix-dependencies' into maint · 5fd72277
      Junio C Hamano 提交于
      Build clean-up.
      
      * jk/make-fix-dependencies:
        Makefile: silence perl/PM.stamp recipe
        Makefile: avoid timestamp updates to GIT-BUILD-OPTIONS
        Makefile: drop dependency between git-instaweb and gitweb
      5fd72277
    • J
      Merge branch 'sb/pack-protocol-mention-smart-http' into maint · 68538cf9
      Junio C Hamano 提交于
      Doc updates.
      
      * sb/pack-protocol-mention-smart-http:
        Documentation/technical/pack-protocol: mention http as possible protocol
      68538cf9
    • J
      Merge branch 'jk/die-on-bogus-worktree-late' into maint · f2bd2314
      Junio C Hamano 提交于
      The setup code used to die when core.bare and core.worktree are set
      inconsistently, even for commands that do not need working tree.
      
      * jk/die-on-bogus-worktree-late:
        setup_git_directory: delay core.bare/core.worktree errors
      f2bd2314
    • J
      Merge branch 'pt/pull-tags-error-diag' into maint · 6356003c
      Junio C Hamano 提交于
      There was a dead code that used to handle "git pull --tags" and
      show special-cased error message, which was made irrelevant when
      the semantics of the option changed back in Git 1.9 days.
      
      * pt/pull-tags-error-diag:
        pull: remove --tags error in no merge candidates case
      6356003c
    • J
      Merge branch 'jk/color-diff-plain-is-context' into maint · 6998d890
      Junio C Hamano 提交于
      "color.diff.plain" was a misnomer; give it 'color.diff.context' as
      a more logical synonym.
      
      * jk/color-diff-plain-is-context:
        diff.h: rename DIFF_PLAIN color slot to DIFF_CONTEXT
        diff: accept color.diff.context as a synonym for "plain"
      6998d890
    • J
      Merge branch 'jk/diagnose-config-mmap-failure' into maint · c5baf18a
      Junio C Hamano 提交于
      The configuration reader/writer uses mmap(2) interface to access
      the files; when we find a directory, it barfed with "Out of memory?".
      
      * jk/diagnose-config-mmap-failure:
        xmmap(): drop "Out of memory?"
        config.c: rewrite ENODEV into EISDIR when mmap fails
        config.c: avoid xmmap error messages
        config.c: fix mmap leak when writing config
        read-cache.c: drop PROT_WRITE from mmap of index
      c5baf18a
    • J
      Merge branch 'jk/squelch-missing-link-warning-for-unreachable' into maint · c5331258
      Junio C Hamano 提交于
      Recent "git prune" traverses young unreachable objects to safekeep
      old objects in the reachability chain from them, which sometimes
      caused error messages that are unnecessarily alarming.
      
      * jk/squelch-missing-link-warning-for-unreachable:
        suppress errors on missing UNINTERESTING links
        silence broken link warnings with revs->ignore_missing_links
        add quieter versions of parse_{tree,commit}
      c5331258
    • J
      Merge branch 'mm/rebase-i-post-rewrite-exec' into maint · f249409b
      Junio C Hamano 提交于
      "git rebase -i" fired post-rewrite hook when it shouldn't (namely,
      when it was told to stop sequencing with 'exec' insn).
      
      * mm/rebase-i-post-rewrite-exec:
        t5407: use <<- to align the expected output
        rebase -i: fix post-rewrite hook with failed exec command
        rebase -i: demonstrate incorrect behavior of post-rewrite
      f249409b
  2. 17 6月, 2015 14 次提交
  3. 15 6月, 2015 1 次提交
  4. 13 6月, 2015 4 次提交
  5. 06 6月, 2015 12 次提交
    • J
      Git 2.4.3 · 69f9a6e5
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      69f9a6e5
    • J
      Merge branch 'dl/branch-error-message' into maint · cbac7067
      Junio C Hamano 提交于
      Error messages from "git branch" called remote-tracking branches as
      "remote branches".
      
      * dl/branch-error-message:
        branch: do not call a "remote-tracking branch" a "remote branch"
      cbac7067
    • J
      Merge branch 'jk/skip-http-tests-under-no-curl' into maint · c538004c
      Junio C Hamano 提交于
      Test clean-up.
      
      * jk/skip-http-tests-under-no-curl:
        tests: skip dav http-push tests under NO_EXPAT=NoThanks
        t/lib-httpd.sh: skip tests if NO_CURL is defined
      c538004c
    • J
      Merge branch 'ps/doc-packfile-vs-pack-file' into maint · e41f8d98
      Junio C Hamano 提交于
      Doc consistency updates.
      
      * ps/doc-packfile-vs-pack-file:
        doc: fix inconsistent spelling of "packfile"
        pack-protocol.txt: fix insconsistent spelling of "packfile"
        git-unpack-objects.txt: fix inconsistent spelling of "packfile"
        git-verify-pack.txt: fix inconsistent spelling of "packfile"
      e41f8d98
    • J
      Merge branch 'fg/document-commit-message-stripping' into maint · 48feda58
      Junio C Hamano 提交于
      * fg/document-commit-message-stripping:
        Documentation: clarify how "git commit" cleans up the edited log message
      48feda58
    • J
      Merge branch 'jk/rerere-forget-check-enabled' into maint · 5c2e6549
      Junio C Hamano 提交于
      "git rerere forget" in a repository without rerere enabled gave a
      cryptic error message; it should be a silent no-op instead.
      
      * jk/rerere-forget-check-enabled:
        rerere: exit silently on "forget" when rerere is disabled
      5c2e6549
    • J
      Merge branch 'pt/pull-log-n' into maint · 4cb9fe35
      Junio C Hamano 提交于
      "git pull --log" and "git pull --no-log" worked as expected, but
      "git pull --log=20" did not.
      
      * pt/pull-log-n:
        pull: handle --log=<n>
      4cb9fe35
    • J
      Merge branch 'pt/pull-ff-vs-merge-ff' into maint · 7e46f27f
      Junio C Hamano 提交于
      The pull.ff configuration was supposed to override the merge.ff
      configuration, but it didn't.
      
      * pt/pull-ff-vs-merge-ff:
        pull: parse pull.ff as a bool or string
        pull: make pull.ff=true override merge.ff
      7e46f27f
    • J
      Merge branch 'rs/plug-leak-in-pack-bitmaps' into maint · 06629901
      Junio C Hamano 提交于
      The code to read pack-bitmap wanted to allocate a few hundred
      pointers to a structure, but by mistake allocated and leaked memory
      enough to hold that many actual structures.  Correct the allocation
      size and also have it on stack, as it is small enough.
      
      * rs/plug-leak-in-pack-bitmaps:
        pack-bitmaps: plug memory leak, fix allocation size for recent_bitmaps
      06629901
    • J
      Merge branch 'ja/tutorial-asciidoctor-fix' into maint · 7c1ff53d
      Junio C Hamano 提交于
      A literal block in the tutorial had lines with unequal lengths to
      delimit it from the rest of the document, which choke GitHub's
      AsciiDoc renderer.
      
      * ja/tutorial-asciidoctor-fix:
        doc: fix unmatched code fences
      7c1ff53d
    • J
      Merge branch 'jk/stripspace-asciidoctor-fix' into maint · 413a715f
      Junio C Hamano 提交于
      A literal block in the tutorial had lines with unequal lengths to
      delimit it from the rest of the document, which choke GitHub's
      AsciiDoc renderer.
      
      * jk/stripspace-asciidoctor-fix:
        doc: fix unmatched code fences in git-stripspace
      413a715f
    • J
      Merge branch 'jk/asciidoc-markup-fix' into maint · 96b7f93a
      Junio C Hamano 提交于
      Various documentation mark-up fixes to make the output more
      consistent in general and also make AsciiDoctor (an alternative
      formatter) happier.
      
      * jk/asciidoc-markup-fix:
        doc: convert AsciiDoc {?foo} to ifdef::foo[]
        doc: put example URLs and emails inside literal backticks
        doc: drop backslash quoting of some curly braces
        doc: convert \--option to --option
        doc/add: reformat `--edit` option
        doc: fix length of underlined section-title
        doc: fix hanging "+"-continuation
        doc: fix unquoted use of "{type}"
        doc: fix misrendering due to `single quote'
      96b7f93a