1. 02 4月, 2009 2 次提交
  2. 31 3月, 2009 6 次提交
  3. 30 3月, 2009 5 次提交
  4. 28 3月, 2009 2 次提交
  5. 26 3月, 2009 2 次提交
  6. 25 3月, 2009 5 次提交
  7. 23 3月, 2009 3 次提交
  8. 22 3月, 2009 13 次提交
  9. 19 3月, 2009 1 次提交
    • J
      doc: clarify how -S works · 821d56aa
      Jeff King 提交于
      The existing text was very vague about what exactly it means
      for difference to "contain" a change. This seems to cause
      confusion on the mailing list every month or two.
      
      To fix it we:
      
        1. use "introduce or remove an instance of" instead of
           "contain"
      
        2. point the user to gitdiffcore(7), which contains a more
           complete explanation
      Signed-off-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      821d56aa
  10. 16 3月, 2009 1 次提交
    • J
      Remove total confusion from git-fetch and git-push · 9326d494
      Junio C Hamano 提交于
      The config file is not the only place remotes are defined, and without
      consulting .git/remotes and .git/branches, you won't know if "origin" is
      configured by the user.  Don't give up too early and insult the user with
      a wisecrack "Where do you want to fetch from today?"
      
      The only thing the previous patch seems to want to prevent from happening
      is a lazy "git fetch/push" that does not say where-from/to to produce an
      error message 'origin not found', and we can do that by not letting
      add_url_alias() to turn a nickname "origin" literally into a pathname
      "origin" without changing the rest of the logic.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      9326d494