1. 09 5月, 2008 1 次提交
  2. 04 5月, 2008 1 次提交
  3. 30 4月, 2008 2 次提交
  4. 28 4月, 2008 1 次提交
  5. 24 4月, 2008 3 次提交
  6. 23 4月, 2008 6 次提交
  7. 19 4月, 2008 1 次提交
    • J
      am: POSIX portability fix · 29df2385
      Junio C Hamano 提交于
      POSIX allows echo without flag to interpret specials such as \n, and we
      tried to make things portable by using printf instead where it matters.
      Recently added code to "git am" had unprotected "echo", which was caught
      by t4014 and Rémi Vanicat.
      
      This should fix it.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      29df2385
  8. 17 4月, 2008 2 次提交
  9. 16 4月, 2008 6 次提交
  10. 13 4月, 2008 3 次提交
  11. 12 4月, 2008 5 次提交
  12. 10 4月, 2008 3 次提交
  13. 07 4月, 2008 1 次提交
    • J
      Fix "git apply" to correctly enforce "match at the beginning" · ee5a317e
      Junio C Hamano 提交于
      An earlier commit 4be60962 (apply --unidiff-zero: loosen sanity checks for
      --unidiff=0 patches, 2006-09-17) made match_beginning and match_end
      computed incorrectly.  If a hunk inserts at the beginning, old position
      recorded at the hunk is line 0, and if a hunk changes at the beginning, it
      is line 1.  The new test added to t4104 exposes that the old code did not
      insist on matching at the beginning for a patch to add a line to an empty
      file.
      
      An even older 65aadb92 (apply: force matching at the beginning.,
      2006-05-24) was equally wrong in that it tried to take hints from the
      number of leading context lines, to decide if the hunk must match at the
      beginning, but we can just look at the line number in the hunk to decide.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      ee5a317e
  14. 28 3月, 2008 4 次提交
  15. 27 3月, 2008 1 次提交