1. 25 9月, 2005 8 次提交
  2. 24 9月, 2005 12 次提交
  3. 23 9月, 2005 14 次提交
  4. 22 9月, 2005 6 次提交
    • J
      Retire diff-helper. · 5cfcd07c
      Junio C Hamano 提交于
      The textual diff generation with built-in '-p' in diff-* brothers has
      proven to be useful enough that git-diff-helper outlived its usefulness.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      5cfcd07c
    • J
      Retire rev-tree. · 9dcc829f
      Junio C Hamano 提交于
      Some old scripts might still use git-rev-tree, but it really is
      clearly inferior in every way to git-rev-list that such scripts should
      be fixed anyway. Fixing them should be pretty easy.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      9dcc829f
    • J
      Retire git-export. · 0fe51391
      Junio C Hamano 提交于
      git-export was done as a concept example on how easy it is to export
      the git data to something else. It's much less powerful than any
      number of trivial one-liner scripts now, and real exporters would not
      ever use git-export.
      
      It's obviously much less powerful than "git-whatchanged", or just
      about any combination of git-rev-list + git-diff-tree.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      0fe51391
    • L
      [PATCH] Fix strange timezone handling · 01c6ad29
      Linus Torvalds 提交于
      We generate the ASCII representation of our internal date representation
      ("seconds since 1970, UTC + timezone information") in two different
      places.
      
      One of them uses the stupid and obvious way to make sure that it gets the
      sexagecimal representation right for negative timezones even if they might
      not be exact hours, and the other one depends on the modulus operator
      always matching the sign of argument.
      
      Hey, the clever one works. And C90 even specifies that behaviour. But I
      had to think about it for a while when I was re-visiting this area, and
      even if I didn't have to, it's kind of strange to have two different ways
      to print out the same data format.
      
      So use a common helper for this. And select the stupid and straighforward
      way.
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      01c6ad29
    • J
      Revert "Use git-merge instead of git-resolve in git-pull." · acfadcfb
      Junio C Hamano 提交于
      This reverts f887564a commit.
      acfadcfb
    • J
      Revert "Make Octopus merge message a bit nicer." · b91fb518
      Junio C Hamano 提交于
      This reverts 63f1aa6c commit.
      b91fb518