1. 27 6月, 2013 10 次提交
  2. 25 6月, 2013 14 次提交
  3. 24 6月, 2013 10 次提交
    • J
      Revert "Merge branch 'jg/status-config'" · 908a0e6b
      Junio C Hamano 提交于
      This reverts commit 1a22bd31, reversing
      changes made to 3e7a5b48.
      
      It makes it impossible to "git commit" when status.short is set, and
      also "git status --porcelain" output is affected by status.branch.
      908a0e6b
    • J
      Update draft release notes to 1.8.4 · 1f3a412d
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      1f3a412d
    • J
      Merge branch 'mz/rebase-tests' · 8ff80a2f
      Junio C Hamano 提交于
      * mz/rebase-tests:
        rebase topology tests: fix commit names on case-insensitive file systems
        tests: move test for rebase messages from t3400 to t3406
        t3406: modernize style
        add tests for rebasing merged history
        add tests for rebasing root
        add tests for rebasing of empty commits
        add tests for rebasing with patch-equivalence present
        add simple tests of consistency across rebase types
      8ff80a2f
    • J
      Merge branch 'jk/unpack-entry-fallback-to-another' · ee64e345
      Junio C Hamano 提交于
      * jk/unpack-entry-fallback-to-another:
        unpack_entry: do not die when we fail to apply a delta
        t5303: drop "count=1" from corruption dd
      ee64e345
    • J
      Merge branch 'jk/apache-test-for-2.4' · 23983a47
      Junio C Hamano 提交于
      * jk/apache-test-for-2.4:
        lib-httpd/apache.conf: check version only after mod_version loads
        t/lib-httpd/apache.conf: configure an MPM module for apache 2.4
        t/lib-httpd/apache.conf: load compat access module in apache 2.4
        t/lib-httpd/apache.conf: load extra auth modules in apache 2.4
        t/lib-httpd/apache.conf: do not use LockFile in apache >= 2.4
      23983a47
    • J
      Merge branch 'cm/remote-mediawiki-perlcritique' · 39abbd38
      Junio C Hamano 提交于
      * cm/remote-mediawiki-perlcritique: (31 commits)
        git-remote-mediawiki: make error message more precise
        git-remote-mediawiki: add a perlcritic rule in Makefile
        git-remote-mediawiki: add a .perlcriticrc file
        git-remote-mediawiki: clearly rewrite double dereference
        git-remote-mediawiki: fix a typo ("mediwiki" instead of "mediawiki")
        git-remote-mediawiki: put non-trivial numeric values in constants.
        git-remote-mediawiki: don't use quotes for empty strings
        git-remote-mediawiki: replace "unless" statements with negated "if" statements
        git-remote-mediawiki: brace file handles for print for more clarity
        git-remote-mediawiki: modify strings for a better coding-style
        git-remote-mediawiki: put long code into a subroutine
        git-remote-mediawiki: remove import of unused open2
        git-remote-mediawiki: check return value of open
        git-remote-mediawiki: assign a variable as undef and make proper indentation
        git-remote-mediawiki: rename a variable ($last) which has the name of a keyword
        git-remote-mediawiki: remove unused variable $entry
        git-remote-mediawiki: turn double-negated expressions into simple expressions
        git-remote-mediawiki: change the name of a variable
        git-remote-mediawiki: add newline in the end of die() error messages
        git-remote-mediawiki: change style in a regexp
        ...
      39abbd38
    • J
      Merge branch 'bp/remote-mw-tests' · 7f031ed5
      Junio C Hamano 提交于
      * bp/remote-mw-tests:
        git-remote-mediawiki: remove hardcoded version number in the test suite
      7f031ed5
    • J
      Merge branch 'rr/rebase-autostash' · afaa2a47
      Junio C Hamano 提交于
      * rr/rebase-autostash:
        rebase: finish_rebase() in noop rebase
        rebase: finish_rebase() in fast-forward rebase
        rebase: guard against missing files in read_basic_state()
      afaa2a47
    • J
      Merge branch 'rr/prompt-rebase-breakage-fix' · 352e86e5
      Junio C Hamano 提交于
      * rr/prompt-rebase-breakage-fix:
        prompt: squelch error output from cat
      352e86e5
    • J
      Merge branch 'jg/status-config' · 1a22bd31
      Junio C Hamano 提交于
      "git status" learned status.branch and status.short configuration
      variables to use --branch and --short options by default (override
      with --no-branch and --no-short options from the command line).
      
      * jg/status-config:
        status: introduce status.branch to enable --branch by default
        status: introduce status.short to enable --short by default
      1a22bd31
  4. 23 6月, 2013 1 次提交
    • W
      user-manual: Update download size for Git and the kernel · 4b9ced27
      W. Trevor King 提交于
      They've grown since d19fbc3c (Documentation: add git user's manual,
      2007-01-07) when the stats were initially added.  I've rounded
      download sizes up to the nearest multiple of ten MiB to decrease the
      precision and give a bit of growing room.  Exact sizes:
      
        $ git clone git://git.kernel.org/pub/scm/git/git.git
        Initialized empty Git repository in /tmp/git/.git/
        remote: Counting objects: 156872, done.
        remote: Compressing objects: 100% (40826/40826), done.
        remote: Total 156872 (delta 115322), reused 155492 (delta 114094)
        Receiving objects: 100% (156872/156872), 37.29 MiB | 7.54 MiB/s, done.
        Resolving deltas: 100% (115322/115322), done.
      
        $ git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
        Initialized empty Git repository in /tmp/linux/.git/
        remote: Counting objects: 3057404, done.
        remote: Compressing objects: 100% (474769/474769), done.
        Receiving objects: 100% (3057404/3057404), 634.33 MiB | 27.95 MiB/s, done.
        remote: Total 3057404 (delta 2570385), reused 3040910 (delta 2554408)
        Resolving deltas: 100% (2570385/2570385), done.
        Checking out files: 100% (43012/43012), done.
      Signed-off-by: NW. Trevor King <wking@tremily.us>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      4b9ced27
  5. 22 6月, 2013 4 次提交
    • J
      lib-httpd/apache.conf: check version only after mod_version loads · 5bdc47eb
      Jeff King 提交于
      Commit 04427438 introduced an <IfVersion> directive near the
      top of the apache config file. However, at that point we
      have not yet checked for and loaded the mod_version module.
      This means that the directive will behave oddly if
      mod_version is dynamically loaded, failing to match when it
      should.
      
      We can fix this by moving the whole block below the
      LoadModule directive for mod_version.
      Reported-by: NBrian Gernhardt <brian@gernhardtsoftware.com>
      Signed-off-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      5bdc47eb
    • J
      Sync with maint · 3e7a5b48
      Junio C Hamano 提交于
      * maint:
        completion: complete diff --word-diff
      3e7a5b48
    • Y
      web--browse: support /usr/bin/cygstart on Cygwin · cc2f6b68
      Yaakov Selkowitz 提交于
      While both GUI and console Cygwin browsers do exist, anecdotal evidence
      suggests most users rely on their native Windows browser.  cygstart,
      which is a long-standing part of the base Cygwin installation, will
      cause the page to be opened in the default Windows browser (the one
      registered to open .html files).
      Signed-off-by: NYaakov Selkowitz <yselkowitz@users.sourceforge.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      cc2f6b68
    • J
      transport-helper: be quiet on read errors from helpers · 266f1fdf
      Jeff King 提交于
      Prior to commit 81d340d4, we did not print any error message
      if a remote transport helper died unexpectedly. If a helper
      did not print any error message (e.g., because it crashed),
      the user could be left confused. That commit tried to
      rectify the situation by printing a note that the helper
      exited unexpectedly.
      
      However, this makes a much more common case worse: when a
      helper does die with a useful message, we print the extra
      "Reading from 'git-remote-foo failed" message. This can also
      end up confusing users, as they may not even know what
      remote helpers are (e.g., the fact that http support comes
      through git-remote-https is purely an implementation detail
      that most users do not know or care about).
      
      Since we do not have a good way of knowing whether the
      helper printed a useful error, and since the common failure
      mode is for it to do so, let's default to remaining quiet.
      Debuggers can dig further by setting GIT_TRANSPORT_HELPER_DEBUG.
      Signed-off-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      266f1fdf
  6. 21 6月, 2013 1 次提交