1. 15 8月, 2008 5 次提交
  2. 14 8月, 2008 6 次提交
  3. 13 8月, 2008 11 次提交
  4. 12 8月, 2008 8 次提交
  5. 11 8月, 2008 5 次提交
  6. 10 8月, 2008 1 次提交
  7. 09 8月, 2008 4 次提交
    • J
      Merge branch 'maint' · 0bb3a0ba
      Junio C Hamano 提交于
      * maint:
        asciidoc markup fixes
        Fail properly when cloning from invalid HTTP URL
      
      Conflicts:
      	Documentation/git-push.txt
      0bb3a0ba
    • J
      mailinfo: fix MIME multi-part message boundary handling · a9fd1383
      Junio C Hamano 提交于
      After finding a MIME multi-part message boundary line, the handle_body()
      function is supposed to first flush any accumulated contents from the
      previous part to the output stream.  However, the code mistakenly output
      the boundary line it found.
      
      The old code that used one global, fixed-length buffer line[] used an
      alternate static buffer newline[] for keeping track of this accumulated
      contents and flushed newline[] upon seeing the boundary; when 3b6121f6
      (git-mailinfo: use strbuf's instead of fixed buffers, 2008-07-13)
      converted a fixed-length buffer in this program to use strbuf,these two
      buffers were converted to "line" and "prev" (the latter of which now has a
      much more sensible name) strbufs, but the code mistakenly flushed "line"
      (which contains the boundary we have just found), instead of "prev".
      
      This resulted in the first boundary to be output in front of the first
      line of the message.
      
      The rewritten implementation of handle_boundary() lost the terminating
      newline; this would then result in the second line of the message to be
      stuck with the first line.
      
      The is_multipart_boundary() was designed to catch both the internal
      boundary and the terminating one (the one with trailing "--"); this also
      was broken with the rewrite, and the code in the handle_boundary() to
      handle the terminating boundary was never triggered.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      a9fd1383
    • P
      builtin-rm: Add a --force flag · 01144f20
      Pieter de Bie 提交于
      This adds a --force flag to git-rm, making it somewhat easier for
      subversion people to switch.
      Signed-off-by: NPieter de Bie <pdebie@ai.rug.nl>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      01144f20
    • E
      git-svn: wrap long lines in a few places · 222566e4
      Eric Wong 提交于
      Oops, I let a few patches slip by with long lines in them.
      Extracted from an unrelated patch by: Marcus Griep <marcus@griep.us>
      Signed-off-by: NEric Wong <normalperson@yhbt.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      222566e4