1. 20 6月, 2005 10 次提交
  2. 19 6月, 2005 6 次提交
  3. 18 6月, 2005 5 次提交
    • L
      git-rev-list: add "--bisect" flag to find the "halfway" point · 8b3a1e05
      Linus Torvalds 提交于
      This is useful for doing binary searching for problems.  You start with
      a known good and known bad point, and you then test the "halfway" point
      in between:
      
      	git-rev-list --bisect bad ^good
      
      and you test that.  If that one tests good, you now still have a known
      bad case, but two known good points, and you can bisect again:
      
      	git-rev-list --bisect bad ^good1 ^good2
      
      and test that point.  If that point is bad, you now use that as your
      known-bad starting point:
      
      	git-rev-list --bisect newbad ^good1 ^good2
      
      and basically at every iteration you shrink your list of commits by
      half: you're binary searching for the point where the troubles started,
      even though there isn't a nice linear ordering.
      8b3a1e05
    • L
      Use "-M" instead of "-C" for "git diff" and "git status" · 753fd784
      Linus Torvalds 提交于
      The "C" in "-C" may stand for "Cool", but it's also pretty slow, since
      right now it leaves all unmodified files to be tested even if there are
      no new files at all.  That just ends up being unacceptably slow for big
      projects, especially if it's not all in the cache.
      753fd784
    • L
      git-apply: use default name for mode change patches · b7e8039a
      Linus Torvalds 提交于
      Pure mode changes won't have the file-name in the extended header lines,
      so make sure we pick it up from the default name from the "diff --git"
      line.
      b7e8039a
    • L
      Don't use -C in "git diff" · aeac6681
      Linus Torvalds 提交于
      Right now it confuses at least git-diff-files, since it leaves
      all the files (whether changed or not) in the diff queue.
      aeac6681
    • L
      Add some installation notes in INSTALL · c538d2d3
      Linus Torvalds 提交于
      Jens was the second person who hadn't heard of the "merge" program, and
      didn't have it installed.  So document as many dependency and install
      issues as I can think of.
      c538d2d3
  4. 16 6月, 2005 1 次提交
  5. 15 6月, 2005 6 次提交
  6. 14 6月, 2005 7 次提交
  7. 13 6月, 2005 5 次提交