1. 20 8月, 2015 5 次提交
  2. 22 7月, 2015 1 次提交
    • J
      builtin/send-pack.c: respect user.signingkey · d830d395
      Junio C Hamano 提交于
      When git-send-pack is exec'ed, as is done by git-remote-http, it
      does not read the config, and configured value of user.signingkey is
      ignored. Thus it was impossible to specify a signing key over HTTP,
      other than the default key in the keyring having a User ID matching
      the "Name <email>" format.
      
      This patch at least partially fixes the problem by reading in the GPG
      config from within send-pack. It does not address the related problem
      of plumbing a value for this configuration option using
      `git -c user.signingkey push ...`.
      Signed-off-by: NDave Borowitz <dborowitz@google.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      d830d395
  3. 16 7月, 2015 12 次提交
  4. 26 6月, 2015 12 次提交
  5. 25 6月, 2015 1 次提交
    • C
      Fix definition of ARRAY_SIZE for non-gcc builds · e2c6f7cd
      Charles Bailey 提交于
      The improved ARRAY_SIZE macro uses BARF_UNLESS_AN_ARRAY which expands
      to a valid check for recent gcc versions and to 0 for older gcc
      versions but is not defined on non-gcc builds.
      
      Non-gcc builds need this macro to expand to 0 as well. The current outer
      test (defined(__GNUC__) && (__GNUC__ >= 3)) is a strictly weaker
      condition than the inner test (GIT_GNUC_PREREQ(3, 1)) so we can omit the
      outer test and cause the BARF_UNLESS_AN_ARRAY macro to be defined
      correctly on non-gcc builds as well as gcc builds with older versions.
      Signed-off-by: NCharles Bailey <cbailey32@bloomberg.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      e2c6f7cd
  6. 18 6月, 2015 1 次提交
  7. 17 6月, 2015 8 次提交