1. 14 7月, 2005 12 次提交
  2. 13 7月, 2005 6 次提交
  3. 12 7月, 2005 11 次提交
  4. 11 7月, 2005 7 次提交
  5. 10 7月, 2005 2 次提交
    • L
      Add "-q" flag to "git commit" · 167a4a33
      Linus Torvalds 提交于
      Maybe you don't want the progress report.
      167a4a33
    • L
      git-unpack-objects: show progress report by default · d36f7b80
      Linus Torvalds 提交于
      This ends up being very calming for big "git clone"s, since otherwise
      you just get very frustrated with a long silence, wondering whether it's
      working at all.
      
      Use "-q" to quiet it down.
      
      Now if we could just do the same for the initial "figure out what to
      pack" phase, which can also be quite slow if the other end is busy (or
      not packed and not in cache)...
      d36f7b80
  6. 09 7月, 2005 2 次提交
    • J
      [PATCH] format-patch: fix skipping of blank-lines · 1855c044
      Junio C Hamano 提交于
      If it is fed a commit with more than one leading blank lines,
      the sed scripts git-format-patch-script used looped forever.
      Using git-stripspace upfront makes the sed script somewhat
      simpler to work around this problem.
      
      Also use git-rev-parse so that we can say
      
          $ git-format-patch-script HEAD^^^^
      
      to prepare the latest four patches for e-mail submission.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      1855c044
    • L
      Update the tutorial a bit · ed616049
      Linus Torvalds 提交于
      Add notes on branches, merging, tagging, and update some of the usage to
      the friendlier "git cmd" syntax.
      
      It's still ridiculously lacking, but perhaps it's a _bit_ more useful.
      ed616049