1. 21 1月, 2010 11 次提交
  2. 20 1月, 2010 3 次提交
  3. 19 1月, 2010 15 次提交
    • J
      Merge branch 'maint-1.6.4' into maint-1.6.5 · 03c6e97f
      Junio C Hamano 提交于
      * maint-1.6.4:
        Fix mis-backport of t7002
        base85: Make the code more obvious instead of explaining the non-obvious
        base85: encode_85() does not use the decode table
        base85 debug code: Fix length byte calculation
        checkout -m: do not try to fall back to --merge from an unborn branch
        branch: die explicitly why when calling "git branch [-a|-r] branchname".
        textconv: stop leaking file descriptors
        commit: --cleanup is a message option
        git count-objects: handle packs bigger than 4G
        t7102: make the test fail if one of its check fails
      03c6e97f
    • J
      Merge branch 'maint-1.6.3' into maint-1.6.4 · 814035c1
      Junio C Hamano 提交于
      * maint-1.6.3:
        base85: Make the code more obvious instead of explaining the non-obvious
        base85: encode_85() does not use the decode table
        base85 debug code: Fix length byte calculation
        checkout -m: do not try to fall back to --merge from an unborn branch
        branch: die explicitly why when calling "git branch [-a|-r] branchname".
        textconv: stop leaking file descriptors
        commit: --cleanup is a message option
        git count-objects: handle packs bigger than 4G
        t7102: make the test fail if one of its check fails
      
      Conflicts:
      	builtin-commit.c
      814035c1
    • J
      Merge branch 'maint-1.6.2' into maint-1.6.3 · 011c181c
      Junio C Hamano 提交于
      * maint-1.6.2:
        base85: Make the code more obvious instead of explaining the non-obvious
        base85: encode_85() does not use the decode table
        base85 debug code: Fix length byte calculation
        checkout -m: do not try to fall back to --merge from an unborn branch
        branch: die explicitly why when calling "git branch [-a|-r] branchname".
        textconv: stop leaking file descriptors
        commit: --cleanup is a message option
        git count-objects: handle packs bigger than 4G
        t7102: make the test fail if one of its check fails
      
      Conflicts:
      	diff.c
      011c181c
    • J
      Merge commit 'v1.6.4.4-8-g8de65185' into maint-1.6.4 · 18d97f5f
      Junio C Hamano 提交于
      * commit 'v1.6.4.4-8-g8de65185':
        Fix mis-backport of t7002
      18d97f5f
    • J
      Fix mis-backport of t7002 · 8de65185
      Junio C Hamano 提交于
      The original patch that became cfe370c6 (grep: do not segfault when -f is
      used, 2009-10-16), was made against "maint" or newer branch back then, but
      the fix addressed the issue that was present as far as in 1.6.4 series.
      
      The maintainer backported the patch to the 1.6.4 maintenance branch, but
      failed to notice that the new tests assumed the setup done by the script
      in "maint", which did quite a lot more than the same test script in 1.6.4
      series, and the output didn't match the expected result.
      
      This should fix it.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      8de65185
    • J
      Update draft release notes to 1.7.0 · d07430f9
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      d07430f9
    • J
      Merge branch 'maint' · e33fd3c3
      Junio C Hamano 提交于
      * maint:
        Update draft release notes to 1.6.6.1
        grep: NUL terminate input from a file
        fast-import: tag may point to any object type
      e33fd3c3
    • J
      Update draft release notes to 1.6.6.1 · 6f9752d2
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      6f9752d2
    • J
      Merge branch 'dp/maint-1.6.5-fast-import-non-commit-tag' into maint · 6304c406
      Junio C Hamano 提交于
      * dp/maint-1.6.5-fast-import-non-commit-tag:
        fast-import: tag may point to any object type
      6304c406
    • J
      Merge branch 'jc/rerere' · 4a88fb7f
      Junio C Hamano 提交于
      * jc/rerere:
        Teach --[no-]rerere-autoupdate option to merge, revert and friends
      4a88fb7f
    • J
      Merge branch 'pc/uninteresting-submodule-disappear-upon-switch-branches' · 26b9f5cc
      Junio C Hamano 提交于
      * pc/uninteresting-submodule-disappear-upon-switch-branches:
        Remove empty directories when checking out a commit with fewer submodules
      26b9f5cc
    • J
      Merge branch 'nd/include-termios-for-osol' · 24315750
      Junio C Hamano 提交于
      * nd/include-termios-for-osol:
        Add missing #include to support TIOCGWINSZ on Solaris
      24315750
    • J
      Merge branch 'js/windows' · 3cd02df4
      Junio C Hamano 提交于
      * js/windows:
        Do not use date.c:tm_to_time_t() from compat/mingw.c
        MSVC: Windows-native implementation for subset of Pthreads API
        MSVC: Fix an "incompatible pointer types" compiler warning
        Windows: avoid the "dup dance" when spawning a child process
        Windows: simplify the pipe(2) implementation
        Windows: boost startup by avoiding a static dependency on shell32.dll
        Windows: disable Python
      3cd02df4
    • J
      Merge branch 'jm/maint-1.6.5-grep-NUL-terminate' into maint · 7d0dafe3
      Junio C Hamano 提交于
      * jm/maint-1.6.5-grep-NUL-terminate:
        grep: NUL terminate input from a file
      7d0dafe3
    • J
      grep: NUL terminate input from a file · 34f39992
      Jim Meyering 提交于
      Internally "git grep" runs regexec(3) that expects its input string
      to be NUL terminated.  When searching inside blob data, read_sha1_file()
      automatically gives such a buffer, but builtin-grep.c forgot to put
      the NUL at the end, even though it allocated enough space for it.
      Signed-off-by: NJim Meyering <meyering@redhat.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      34f39992
  4. 18 1月, 2010 10 次提交
    • J
      Update draft release notes to 1.7.0 · ff6d26a0
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      ff6d26a0
    • J
      Merge branch 'tc/test-locate-httpd' · f287c65b
      Junio C Hamano 提交于
      * tc/test-locate-httpd:
        t/lib-http.sh: Restructure finding of default httpd location
      f287c65b
    • J
      Merge branch 'jh/commit-status' · f8eb50f6
      Junio C Hamano 提交于
      * jh/commit-status:
        t7502: test commit.status, --status and --no-status
        commit: support commit.status, --status, and --no-status
      
      Conflicts:
      	Documentation/git-commit.txt
      	builtin-commit.c
      f8eb50f6
    • J
      Merge branch 'jn/makefile' · a4c3616b
      Junio C Hamano 提交于
      * jn/makefile:
        Makefile: consolidate .FORCE-* targets
        Makefile: learn to generate listings for targets requiring special flags
        Makefile: use target-specific variable to pass flags to cc
        Makefile: regenerate assembler listings when asked
      a4c3616b
    • J
      Merge branch 'jc/maint-1.6.1-checkout-m-custom-merge' · a0db3e58
      Junio C Hamano 提交于
      * jc/maint-1.6.1-checkout-m-custom-merge:
        checkout -m path: fix recreating conflicts
      
      Conflicts:
      	t/t7201-co.sh
      a0db3e58
    • J
      Merge branch 'tc/clone-v-progress' · 42aac967
      Junio C Hamano 提交于
      * tc/clone-v-progress:
        clone: use --progress to force progress reporting
        clone: set transport->verbose when -v/--verbose is used
        git-clone.txt: reword description of progress behaviour
        check stderr with isatty() instead of stdout when deciding to show progress
      
      Conflicts:
      	transport.c
      42aac967
    • J
      Merge branch 'tc/smart-http-restrict' · d0605072
      Junio C Hamano 提交于
      * tc/smart-http-restrict:
        Test t5560: Fix test when run with dash
        Smart-http tests: Test http-backend without curl or a webserver
        Smart-http tests: Break test t5560-http-backend into pieces
        Smart-http tests: Improve coverage in test t5560
        Smart-http: check if repository is OK to export before serving it
      d0605072
    • J
      Merge branch 'jk/run-command-use-shell' · 4fa08820
      Junio C Hamano 提交于
      * jk/run-command-use-shell:
        t4030, t4031: work around bogus MSYS bash path conversion
        diff: run external diff helper with shell
        textconv: use shell to run helper
        editor: use run_command's shell feature
        run-command: optimize out useless shell calls
        run-command: convert simple callsites to use_shell
        t0021: use $SHELL_PATH for the filter script
        run-command: add "use shell" option
      4fa08820
    • J
      Merge branch 'sr/gfi-options' · fa232d45
      Junio C Hamano 提交于
      * sr/gfi-options:
        fast-import: add (non-)relative-marks feature
        fast-import: allow for multiple --import-marks= arguments
        fast-import: test the new option command
        fast-import: add option command
        fast-import: add feature command
        fast-import: put marks reading in its own function
        fast-import: put option parsing code in separate functions
      fa232d45
    • J
      Update COPYING with GPLv2 with new FSF address · 703601d6
      Junio C Hamano 提交于
      The mailing address of FSF changed quite a while ago.  Also the expansion
      of the acronym LGPL (which we don't use) is "Lesser GPL" not "Library GPL"
      these days in recent copies of GPLv2.  Update the copy we have with a
      fresh download of <http://www.gnu.org/licenses/gpl-2.0.txt>.
      
      This incidentally removes form-feeds in the text we retained for all these
      years.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      703601d6
  5. 17 1月, 2010 1 次提交