1. 05 12月, 2009 2 次提交
  2. 04 12月, 2009 22 次提交
  3. 03 12月, 2009 6 次提交
  4. 02 12月, 2009 2 次提交
  5. 01 12月, 2009 1 次提交
  6. 30 11月, 2009 1 次提交
  7. 28 11月, 2009 1 次提交
    • J
      Remove dead code from "git am" · c970a6fd
      Junio C Hamano 提交于
      Ever since the initial implementation, "git am" had kept a dead code that
      never triggered due to a typo in the variable name.  Worse yet, the code,
      if it weren't for the typo, would have attempted to add "[PATCH] " at the
      beginning of the Subject: header when "git am" is run with its "-k"
      option.  However, because "git am -k" tells mailinfo to keep such prefix
      when parsing the input, the "[PATCH] " added by this dead code would have
      really been unnecessary duplicate.
      
      Embarrassing is that we kept _maintaining_ the codepath without anybody
      noticing for four years.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      c970a6fd
  8. 27 11月, 2009 3 次提交
  9. 26 11月, 2009 1 次提交
  10. 24 11月, 2009 1 次提交
    • N
      pack-objects: split implications of --all-progress from progress activation · 4f366275
      Nicolas Pitre 提交于
      Currently the --all-progress flag is used to use force progress display
      during the writing object phase even if output goes to stdout which is
      primarily the case during a push operation.  This has the unfortunate
      side effect of forcing progress display even if stderr is not a
      terminal.
      
      Let's introduce the --all-progress-implied argument which has the same
      intent except for actually forcing the activation of any progress
      display.  With this, progress display will be automatically inhibited
      whenever stderr is not a terminal, or full progress display will be
      included otherwise.  This should let people use 'git push' within a cron
      job without filling their logs with useless percentage displays.
      Signed-off-by: NNicolas Pitre <nico@fluxnic.net>
      Tested-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      4f366275