1. 19 6月, 2009 2 次提交
  2. 14 6月, 2009 1 次提交
  3. 29 5月, 2009 3 次提交
  4. 10 5月, 2009 1 次提交
  5. 19 4月, 2009 1 次提交
  6. 13 4月, 2009 1 次提交
  7. 27 2月, 2009 2 次提交
  8. 29 1月, 2009 1 次提交
    • J
      git-am: minor cleanups · 98ef23b3
      Jay Soffian 提交于
      Update usage statement to remove a no-longer supported option, and to hide two
      options (one a no-op, one internal) unless --help-all is used.
      
      Use "test -t 0" instead of "tty -s" to detect when stdin is a terminal. (test
      -t 0 is used elsewhere in git-am and in other git shell scripts, tty -s is
      not, and appears to be deprecated by POSIX)
      
      Use "test ..." instead of "[ ... ]" and "die <msg>" instead of "echo <msg>
      >&2; exit 1" to be consistent with rest of script.
      Signed-off-by: NJay Soffian <jaysoffian@gmail.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      98ef23b3
  9. 26 1月, 2009 2 次提交
  10. 24 1月, 2009 1 次提交
  11. 19 1月, 2009 1 次提交
  12. 18 1月, 2009 1 次提交
  13. 15 1月, 2009 1 次提交
  14. 12 1月, 2009 1 次提交
    • J
      git-am: add --directory=<dir> option · b47dfe9e
      Junio C Hamano 提交于
      Thanks to a2003379 (git-am: propagate -C<n>, -p<n> options as well,
      2008-12-04) and commits around it, "git am" is equipped to correctly
      propagate the command line flags such as -C/-p/-whitespace across a patch
      failure and restart.
      
      It is trivial to support --directory option now, resurrecting previous
      attempts by Kevin and Simon.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      b47dfe9e
  15. 06 12月, 2008 1 次提交
  16. 05 12月, 2008 3 次提交
  17. 16 8月, 2008 1 次提交
  18. 31 7月, 2008 1 次提交
  19. 26 7月, 2008 1 次提交
  20. 24 7月, 2008 1 次提交
  21. 22 7月, 2008 3 次提交
  22. 20 7月, 2008 1 次提交
  23. 16 7月, 2008 1 次提交
  24. 14 7月, 2008 3 次提交
  25. 08 7月, 2008 1 次提交
    • J
      Teach "am" and "rebase" to mark the original position with ORIG_HEAD · 22e40795
      Junio C Hamano 提交于
      "merge" and "reset" leave the original point in history in ORIG_HEAD,
      which makes it easy to go back to where you were before you inflict a
      major damage to your history and realize that you do not like the result
      at all.  These days with reflog, we technically do not need to use
      ORIG_HEAD, but it is a handy way nevertheless.
      
      This teaches "am" and "rebase" (all forms --- the vanilla one that uses
      "am" as its backend, "-m" variant that cherry-picks, and "--interactive")
      to do the same.
      
      The original idea and a partial implementation to do this only for "rebase
      -m" was by Brian Gernhardt; this extends on his idea.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      22e40795
  26. 18 6月, 2008 1 次提交
  27. 20 5月, 2008 1 次提交
  28. 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
  29. 17 4月, 2008 1 次提交