1. 26 1月, 2016 3 次提交
  2. 30 12月, 2015 1 次提交
  3. 16 12月, 2015 11 次提交
  4. 15 12月, 2015 2 次提交
    • S
      completion: fix completing unstuck email alias arguments · ccab28a9
      SZEDER Gábor 提交于
      Completing unstuck form of email aliases doesn't quite work:
      
        $ git send-email --to <TAB>
        alice   bob     cecil
        $ git send-email --to a<TAB>
        alice   bob     cecil
      
      While listing email aliases works as expected, the second case should
      just complete to 'alice', but it keeps offering all email aliases
      instead.
      
      The cause for this behavior is that in this case we mistakenly tell
      __gitcomp() explicitly that the current word to be completed is empty,
      while in reality it is not.  As a result __gitcomp() doesn't filter
      out non-matching aliases, so all aliases end up being offered over and
      over again.
      
      Fix this by not passing the current word to be completed to
      __gitcomp() and letting it go the default route and grab it from the
      '$cur' variable.  Don't pass empty prefix either, because it's assumed
      to be empty when unspecified, so it's not necessary.
      Signed-off-by: NSZEDER Gábor <szeder@ira.uka.de>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      ccab28a9
    • J
      ident: fix undefined variable when NO_IPV6 is set · 58d29ece
      Jeff King 提交于
      Commit 00bce77f (ident.c: add support for IPv6, 2015-11-27)
      moved the "gethostbyname" call out of "add_domainname" and
      into the helper function "canonical_name". But when moving
      the code, it forgot that the "buf" variable is passed as
      "host" in the helper.
      Reported-by: Njohan defries <johandefries@gmail.com>
      Signed-off-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      58d29ece
  5. 12 12月, 2015 16 次提交
  6. 11 12月, 2015 7 次提交
    • J
      Git 2.7-rc0 · 7d722536
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      7d722536
    • J
      Sync with maint · 39e07f77
      Junio C Hamano 提交于
      * maint:
        Documentation/git-update-index: add missing opts to synopsis
      39e07f77
    • J
      Update release notes to 2.7 · 86c95ac5
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      86c95ac5
    • J
      Merge branch 'nd/doc-check-ref-format-typo' · 56d63d0e
      Junio C Hamano 提交于
      * nd/doc-check-ref-format-typo:
        git-check-ref-format.txt: typo, s/avoids/avoid/
      56d63d0e
    • J
      Merge branch 'bc/object-id' · 844a9ce4
      Junio C Hamano 提交于
      More transition from "unsigned char[40]" to "struct object_id".
      
      This needed a few merge fixups, but is mostly disentangled from other
      topics.
      
      * bc/object-id:
        remote: convert functions to struct object_id
        Remove get_object_hash.
        Convert struct object to object_id
        Add several uses of get_object_hash.
        object: introduce get_object_hash macro.
        ref_newer: convert to use struct object_id
        push_refs_with_export: convert to struct object_id
        get_remote_heads: convert to struct object_id
        parse_fetch: convert to use struct object_id
        add_sought_entry_mem: convert to struct object_id
        Convert struct ref to use object_id.
        sha1_file: introduce has_object_file helper.
      844a9ce4
    • J
      Merge branch 'dt/fsck-verify-pack-error' · b12a966e
      Junio C Hamano 提交于
      The exit code of git-fsck didnot reflect some types of errors found
      in packed objects, which has been corrected.
      
      * dt/fsck-verify-pack-error:
        verify_pack: do not ignore return value of verification function
      b12a966e
    • J
      Merge branch 'ls/travis-yaml' · 9eb2449c
      Junio C Hamano 提交于
      The necessary infrastructure to build topics using the free Travis
      CI has been added. Developers forking from this topic (and enabling
      Travis) can do their own builds, and we can turn on auto-builds for
      git/git (including build-status for pull requests that people
      open).
      
      * ls/travis-yaml:
        Add Travis CI support
      9eb2449c