1. 12 2月, 2008 36 次提交
  2. 11 2月, 2008 1 次提交
  3. 10 2月, 2008 3 次提交
    • J
      Merge branch 'maint' · 94bf9f7c
      Junio C Hamano 提交于
      * maint:
        Fix typo in 'blame' documentation.
      94bf9f7c
    • M
      Work around curl-gnutls not liking to be reinitialized · 9fd9279b
      Mike Hommey 提交于
      curl versions 7.16.3 to 7.18.0 included had a regression in which https
      requests following curl_global_cleanup/init sequence would fail with ASN1
      parser errors with curl-gnutls. Such sequences happen in some cases such
      as git fetch.
      
      We work around this by removing the http_init and http_cleanup calls from
      get_refs_via_curl, replacing them with a transport->data initialization
      with the http_walker (which does http_init).
      
      While the http_walker is not currently used in get_refs_via_curl, http
      and walker code refactor will make it use it.
      Signed-off-by: NMike Hommey <mh@glandium.org>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      9fd9279b
    • J
      Introduce the config variable pack.packSizeLimit · 2b84b5a8
      Johannes Schindelin 提交于
      "git pack-objects" has the option --max-pack-size to limit the file
      size of the packs to a certain amount of bytes.  On platforms where
      the pack file size is limited by filesystem constraints, it is easy
      to forget this option, and this option does not exist for "git gc"
      to begin with.
      
      So introduce a config variable to set the default maximum, but make
      this overrideable by the command line.
      
      Suggested by Tor Arvid Lund.
      Signed-off-by: NJohannes Schindelin <johannes.schindelin@gmx.de>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      2b84b5a8