1. 08 9月, 2009 1 次提交
  2. 06 9月, 2009 2 次提交
  3. 04 9月, 2009 3 次提交
  4. 03 9月, 2009 2 次提交
    • G
      git-cvsserver: no longer use deprecated 'git-subcommand' commands · d2feb01a
      Gerrit Pape 提交于
      git-cvsserver still references git commands like 'git-config', which
      is depcrecated.  This commit changes git-cvsserver to use the
      'git subcommand' form.
      
      Sylvain Beucler reported the problem through
       http://bugs.debian.org/536067Signed-off-by: NGerrit Pape <pape@smarden.org>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      d2feb01a
    • J
      clone: disconnect transport after fetching · 12d49966
      Jeff King 提交于
      The current code just leaves the transport in whatever state
      it was in after performing the fetch.  For a non-empty clone
      over the git protocol, the transport code already
      disconnects at the end of the fetch.
      
      But for an empty clone, we leave the connection hanging, and
      eventually close the socket when clone exits. This causes
      the remote upload-pack to complain "the remote end hung up
      unexpectedly". While this message is harmless to the clone
      itself, it is unnecessarily scary for a user to see and may
      pollute git-daemon logs.
      
      This patch just explicitly calls disconnect after we are
      done with the remote end, which sends a flush packet to
      upload-pack and cleanly disconnects, avoiding the error
      message.
      
      Other transports are unaffected or slightly improved:
      
       - for a non-empty repo over the git protocol, the second
         disconnect is a no-op (since we are no longer connected)
      
       - for "walker" transports (like HTTP or FTP), we actually
         free some used memory (which previously just sat until
         the clone process exits)
      
       - for "rsync", disconnect is always a no-op anyway
      Signed-off-by: NJeff King <peff@peff.net>
      Acked-by: NDaniel Barkalow <barkalow@iabervon.org>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      12d49966
  5. 30 8月, 2009 1 次提交
  6. 29 8月, 2009 3 次提交
  7. 28 8月, 2009 8 次提交
  8. 27 8月, 2009 10 次提交
  9. 22 8月, 2009 7 次提交
  10. 19 8月, 2009 3 次提交