1. 24 3月, 2015 6 次提交
    • J
      Merge branch 'js/completion-ctags-pattern-substitution-fix' · c267a4d0
      Junio C Hamano 提交于
      The code that reads from the ctags file in the completion script
      (in contrib/) did not spell ${param/pattern/string} substitution
      correctly, which happened to work with bash but not with zsh.
      
      * js/completion-ctags-pattern-substitution-fix:
        contrib/completion: escape the forward slash in __git_match_ctag
      c267a4d0
    • J
      Merge branch 'jk/push-config' · 61ca3782
      Junio C Hamano 提交于
      Restructure "git push" codepath to make it easier to add new
      configuration bits and then add push.followTags configuration that
      turns --follow-tags option on by default.
      
      * jk/push-config:
        push: allow --follow-tags to be set by config push.followTags
        cmd_push: pass "flags" pointer to config callback
        cmd_push: set "atomic" bit directly
        git_push_config: drop cargo-culted wt_status pointer
      61ca3782
    • J
      Merge branch 'nd/config-doc-camelCase' · aa65b860
      Junio C Hamano 提交于
      Documentation updates.
      
      * nd/config-doc-camelCase:
        *config.txt: stick to camelCase naming convention
      aa65b860
    • J
      Merge branch 'jk/test-annoyances' · 07da4e09
      Junio C Hamano 提交于
      Test fixes.
      
      * jk/test-annoyances:
        t5551: make EXPENSIVE test cheaper
        t5541: move run_with_cmdline_limit to test-lib.sh
        t: pass GIT_TRACE through Apache
        t: redirect stderr GIT_TRACE to descriptor 4
        t: translate SIGINT to an exit
      07da4e09
    • J
      Merge branch 'jk/smart-http-hide-refs' · c12eca7e
      Junio C Hamano 提交于
      The transfer.hiderefs support did not quite work for smart-http
      transport.
      
      * jk/smart-http-hide-refs:
        upload-pack: do not check NULL return of lookup_unknown_object
        upload-pack: fix transfer.hiderefs over smart-http
      c12eca7e
    • J
      Merge branch 'jk/tag-h-column-is-a-listing-option' · a633651d
      Junio C Hamano 提交于
      "git tag -h" used to show the "--column" and "--sort" options
      that are about listing in a wrong section.
      
      * jk/tag-h-column-is-a-listing-option:
        tag: fix some mis-organized options in "-h" listing
      a633651d
  2. 21 3月, 2015 13 次提交
    • J
      Post 2.3 cycle (batch #11) · e80e85a5
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      e80e85a5
    • J
      Merge branch 'mg/log-decorate-HEAD' · 46d403f1
      Junio C Hamano 提交于
      Output from "git log --decorate" mentions HEAD when it points at a
      tip of an branch differently from a detached HEAD.
      
      This is a potentially backward-incompatible change.
      
      * mg/log-decorate-HEAD:
        log: decorate HEAD with branch name
      46d403f1
    • J
      Merge branch 'jc/decorate-leaky-separator-color' · 5f456b3c
      Junio C Hamano 提交于
      "git log --decorate" did not reset colors correctly around the
      branch names.
      
      * jc/decorate-leaky-separator-color:
        log --decorate: do not leak "commit" color into the next item
        Documentation/config.txt: simplify boolean description in the syntax section
        Documentation/config.txt: describe 'color' value type in the "Values" section
        Documentation/config.txt: have a separate "Values" section
        Documentation/config.txt: describe the structure first and then meaning
        Documentation/config.txt: explain multi-valued variables once
        Documentation/config.txt: avoid unnecessary negation
      5f456b3c
    • J
      Merge branch 'sb/leaks' · cfe96b38
      Junio C Hamano 提交于
      Code cleanup.
      
      * sb/leaks:
        builtin/help.c: fix memory leak
        bundle.c: fix memory leak
        connect.c: do not leak "conn" after showing diagnosis
      cfe96b38
    • J
      Merge branch 'rs/use-isxdigit' · daea6fca
      Junio C Hamano 提交于
      Code cleanup.
      
      * rs/use-isxdigit:
        use isxdigit() for checking if a character is a hexadecimal digit
      daea6fca
    • J
      Merge branch 'mg/verify-commit' · 4c24385e
      Junio C Hamano 提交于
      Workarounds for certain build of GPG that triggered false breakage
      in a test.
      
      * mg/verify-commit:
        t7510: do not fail when gpg warns about insecure memory
      4c24385e
    • J
      Merge branch 'km/imap-send-libcurl-options' · 0a819772
      Junio C Hamano 提交于
      "git imap-send" learned to optionally talk with an IMAP server via
      libcURL; because there is no other option when Git is built with
      NO_OPENSSL option, use that codepath by default under such
      configuration.
      
      * km/imap-send-libcurl-options:
        imap-send: use cURL automatically when NO_OPENSSL defined
      0a819772
    • J
      Merge branch 'km/bsd-sysctl' · 551fc7ae
      Junio C Hamano 提交于
      We now detect number of CPUs on older BSD-derived systems.
      
      * km/bsd-sysctl:
        thread-utils.c: detect CPU count on older BSD-like systems
        configure: support HAVE_BSD_SYSCTL option
      551fc7ae
    • J
      Merge branch 'km/bsd-shells' · ec0465ad
      Junio C Hamano 提交于
      Portability fixes and workarounds for shell scripts have been added
      to help BSD-derived systems.
      
      * km/bsd-shells:
        t5528: do not fail with FreeBSD shell
        help.c: use SHELL_PATH instead of hard-coded "/bin/sh"
        git-compat-util.h: move SHELL_PATH default into header
        git-instaweb: use @SHELL_PATH@ instead of /bin/sh
        git-instaweb: allow running in a working tree subdirectory
      ec0465ad
    • J
      Merge branch 'rs/daemon-hostname-in-strbuf' · 89ebf97c
      Junio C Hamano 提交于
      Code in "git daemon" to parse out and hold hostnames used in
      request interpolation has been simplified.
      
      * rs/daemon-hostname-in-strbuf:
        daemon: deglobalize hostname information
        daemon: use strbuf for hostname info
      89ebf97c
    • J
      Merge branch 'mg/detached-head-report' · 38f6ae90
      Junio C Hamano 提交于
      "git branch" on a detached HEAD always said "(detached from xyz)",
      even when "git status" would report "detached at xyz".  The HEAD is
      actually at xyz and haven't been moved since it was detached in
      such a case, but the user cannot read what the current value of
      HEAD is when "detached from" is used.
      
      * mg/detached-head-report:
        branch: name detached HEAD analogous to status
        wt-status: refactor detached HEAD analysis
      38f6ae90
    • J
      Merge branch 'kn/git-cd-to-empty' · d6c988dd
      Junio C Hamano 提交于
      "git -C '' subcmd" refused to work in the current directory, unlike
      "cd ''" which silently behaves as a no-op.
      
      * kn/git-cd-to-empty:
        git: treat "git -C '<path>'" as a no-op when <path> is empty
      d6c988dd
    • J
      Merge branch 'nd/versioncmp-prereleases' · f57610a1
      Junio C Hamano 提交于
      The versionsort.prerelease configuration variable can be used to
      specify that v1.0-pre1 comes before v1.0.
      
      * nd/versioncmp-prereleases:
        config.txt: update versioncmp.prereleaseSuffix
        versionsort: support reorder prerelease suffixes
      f57610a1
  3. 18 3月, 2015 9 次提交
    • J
      Post 2.3 cyce (batch #10) · 9ab698f4
      Junio C Hamano 提交于
      Also declare that the next one will be called v2.4 ;-)
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      9ab698f4
    • J
      Merge branch 'mg/doc-status-color-slot' · 2a39bdb9
      Junio C Hamano 提交于
      Documentation fixes.
      
      * mg/doc-status-color-slot:
        config,completion: add color.status.unmerged
      2a39bdb9
    • J
      Merge branch 'mg/status-v-v' · 9bb56e47
      Junio C Hamano 提交于
      "git status" now allows the "-v" to be given twice to show the
      differences that are left in the working tree not to be committed.
      
      * mg/status-v-v:
        commit/status: show the index-worktree diff with -v -v
        t7508: test git status -v
        t7508: .gitignore 'expect' and 'output' files
      9bb56e47
    • J
      Merge branch 'mg/sequencer-commit-messages-always-verbatim' · 795b0142
      Junio C Hamano 提交于
      "git cherry-pick" used to clean-up the log message even when it is
      merely replaying an existing commit.  It now replays the message
      verbatim unless you are editing the message of resulting commits.
      
      * mg/sequencer-commit-messages-always-verbatim:
        sequencer: preserve commit messages
      795b0142
    • J
      Merge branch 'sg/completion-remote' · e5b8ce24
      Junio C Hamano 提交于
      Code simplification.
      
      * sg/completion-remote:
        completion: simplify __git_remotes()
        completion: add a test for __git_remotes() helper function
      e5b8ce24
    • J
      Merge branch 'es/rebase-i-count-todo' · fbcbcee5
      Junio C Hamano 提交于
      "git rebase -i" recently started to include the number of
      commits in the insn sheet to be processed, but on a platform
      that prepends leading whitespaces to "wc -l" output, the numbers
      are shown with extra whitespaces that aren't necessary.
      
      * es/rebase-i-count-todo:
        rebase-interactive: re-word "item count" comment
        rebase-interactive: suppress whitespace preceding item count
      fbcbcee5
    • J
      Merge branch 'ak/git-done-help-cleanup' · 860b05b7
      Junio C Hamano 提交于
      Code simplification.
      
      * ak/git-done-help-cleanup:
        git: make was_alias and done_help non-static
      860b05b7
    • J
      Merge branch 'rs/zip-text' · f0b7ab35
      Junio C Hamano 提交于
      "git archive" can now be told to set the 'text' attribute in the
      resulting zip archive.
      
      * rs/zip-text:
        archive-zip: mark text files in archives
      f0b7ab35
    • J
      Merge branch 'rs/deflate-init-cleanup' · 6902c4da
      Junio C Hamano 提交于
      Code simplification.
      
      * rs/deflate-init-cleanup:
        zlib: initialize git_zstream in git_deflate_init{,_gzip,_raw}
      6902c4da
  4. 15 3月, 2015 2 次提交
  5. 14 3月, 2015 10 次提交