1. 23 7月, 2011 16 次提交
  2. 22 7月, 2011 1 次提交
  3. 21 7月, 2011 1 次提交
  4. 20 7月, 2011 12 次提交
    • P
      git-config: Remove extra whitespaces · 8b590075
      Pavan Kumar Sunkara 提交于
      Remove extra whitespaces introduced by commits
      01ebb9dc and fc1905bbSigned-off-by: NPavan Kumar Sunkara <pavan.sss1991@gmail.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      8b590075
    • J
      Update draft release notes to 1.7.7 · d79bcd68
      Junio C Hamano 提交于
      The second batch of topics for this cycle are now in.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      d79bcd68
    • J
      Merge branch 'jc/index-pack' · d907bf8e
      Junio C Hamano 提交于
      * jc/index-pack:
        verify-pack: use index-pack --verify
        index-pack: show histogram when emulating "verify-pack -v"
        index-pack: start learning to emulate "verify-pack -v"
        index-pack: a miniscule refactor
        index-pack --verify: read anomalous offsets from v2 idx file
        write_idx_file: need_large_offset() helper function
        index-pack: --verify
        write_idx_file: introduce a struct to hold idx customization options
        index-pack: group the delta-base array entries also by type
      
      Conflicts:
      	builtin/verify-pack.c
      	cache.h
      	sha1_file.c
      d907bf8e
    • J
      Merge branch 'jn/mime-type-with-params' · 54dbc1f9
      Junio C Hamano 提交于
      * jn/mime-type-with-params:
        gitweb: Serve */*+xml 'blob_plain' as text/plain with $prevent_xss
        gitweb: Serve text/* 'blob_plain' as text/plain with $prevent_xss
      54dbc1f9
    • J
      Merge branch 'jc/submodule-sync-no-auto-vivify' · 0591c0a5
      Junio C Hamano 提交于
      * jc/submodule-sync-no-auto-vivify:
        submodule add: always initialize .git/config entry
        submodule sync: do not auto-vivify uninteresting submodule
      
      Conflicts:
      	git-submodule.sh
      0591c0a5
    • J
      Merge branch 'jk/archive-tar-filter' · 765c7e4f
      Junio C Hamano 提交于
      * jk/archive-tar-filter:
        upload-archive: allow user to turn off filters
        archive: provide builtin .tar.gz filter
        archive: implement configurable tar filters
        archive: refactor file extension format-guessing
        archive: move file extension format-guessing lower
        archive: pass archiver struct to write_archive callback
        archive: refactor list of archive formats
        archive-tar: don't reload default config options
        archive: reorder option parsing and config reading
      765c7e4f
    • J
      Merge branch 'jn/gitweb-split-header-html' · 17a403c8
      Junio C Hamano 提交于
      * jn/gitweb-split-header-html:
        gitweb: Refactor git_header_html
      17a403c8
    • J
      Merge branch 'jk/clone-cmdline-config' · ff94409d
      Junio C Hamano 提交于
      * jk/clone-cmdline-config:
        clone: accept config options on the command line
        config: make git_config_parse_parameter a public function
        remote: use new OPT_STRING_LIST
        parse-options: add OPT_STRING_LIST helper
      ff94409d
    • J
      Merge branch 'jk/maint-config-param' · fe01ef31
      Junio C Hamano 提交于
      * jk/maint-config-param:
        config: use strbuf_split_str instead of a temporary strbuf
        strbuf: allow strbuf_split to work on non-strbufs
        config: avoid segfault when parsing command-line config
        config: die on error in command-line config
        fix "git -c" parsing of values with equals signs
        strbuf_split: add a max parameter
      fe01ef31
    • J
      Merge branch 'jk/tag-list-multiple-patterns' · 20a80d04
      Junio C Hamano 提交于
      * jk/tag-list-multiple-patterns:
        tag: accept multiple patterns for --list
      20a80d04
    • J
      Merge branch 'jc/zlib-wrap' · eb4f4076
      Junio C Hamano 提交于
      * jc/zlib-wrap:
        zlib: allow feeding more than 4GB in one go
        zlib: zlib can only process 4GB at a time
        zlib: wrap deflateBound() too
        zlib: wrap deflate side of the API
        zlib: wrap inflateInit2 used to accept only for gzip format
        zlib: wrap remaining calls to direct inflate/inflateEnd
        zlib wrapper: refactor error message formatter
      
      Conflicts:
      	sha1_file.c
      eb4f4076
    • J
      Merge branch 'ak/gcc46-profile-feedback' · d37b2991
      Junio C Hamano 提交于
      * ak/gcc46-profile-feedback:
        Add explanation of the profile feedback build to the README
        Add profile feedback build to git
        Add option to disable NORETURN
      d37b2991
  5. 15 7月, 2011 2 次提交
  6. 14 7月, 2011 8 次提交
    • M
      rebase: clarify "restore the original branch" · 5960bc9d
      Martin von Zweigbergk 提交于
      The description for 'git rebase --abort' currently says:
      
          Restore the original branch and abort the rebase operation.
      
      The "restore" can be misinterpreted to imply that the original branch
      was somehow in a broken state during the rebase operation. It is also
      not completely clear what "the original branch" is --- is it the
      branch that was checked out before the rebase operation was called or
      is the the branch that is being rebased (it is the latter)? Although
      both issues are made clear in the DESCRIPTION section, let us also
      make the entry in the OPTIONS secion more clear.
      
      Also remove the term "rebasing process" from the usage text, since the
      user already knows that the text is about "git rebase".
      Signed-off-by: NMartin von Zweigbergk <martin.von.zweigbergk@gmail.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      5960bc9d
    • J
      Merge branch 'js/rebase-typo-branch-squelch-usage' · 55272570
      Junio C Hamano 提交于
      * js/rebase-typo-branch-squelch-usage:
        rebase: do not print lots of usage hints after an obvious error message
      55272570
    • J
      Merge branch 'jn/doc-dashdash' · af52e6b0
      Junio C Hamano 提交于
      * jn/doc-dashdash:
        Documentation/i18n: quote double-dash for AsciiDoc
        Documentation: quote double-dash for AsciiDoc
      af52e6b0
    • J
      Merge branch 'bc/submodule-foreach-stdin-fix-1.7.4' · 13ac90a4
      Junio C Hamano 提交于
      * bc/submodule-foreach-stdin-fix-1.7.4:
        git-submodule.sh: preserve stdin for the command spawned by foreach
        t/t7407: demonstrate that the command called by 'submodule foreach' loses stdin
      
      Conflicts:
      	git-submodule.sh
      13ac90a4
    • J
      Merge branch 'nk/ref-doc' · 0e8a23bf
      Junio C Hamano 提交于
      * nk/ref-doc:
        glossary: clarify description of HEAD
        glossary: update description of head and ref
        glossary: update description of "tag"
        git.txt: de-emphasize the implementation detail of a ref
        check-ref-format doc: de-emphasize the implementation detail of a ref
        git-remote.txt: avoid sounding as if loose refs are the only ones in the world
        git-remote.txt: fix wrong remote refspec
      0e8a23bf
    • J
      Merge branch 'fk/relink-upon-ldflags-update' · b57e58fc
      Junio C Hamano 提交于
      * fk/relink-upon-ldflags-update:
        Makefile: Track changes to LDFLAGS and relink when necessary
      b57e58fc
    • J
      Merge branch 'jl/maint-fetch-recursive-fix' · 182f2289
      Junio C Hamano 提交于
      * jl/maint-fetch-recursive-fix:
        fetch: Also fetch submodules in subdirectories in on-demand mode
      182f2289
    • J
      Merge branch 'jc/maint-cygwin-trust-executable-bit-default' · df9b29ce
      Junio C Hamano 提交于
      * jc/maint-cygwin-trust-executable-bit-default:
        cygwin: trust executable bit by default
      df9b29ce