1. 28 12月, 2012 12 次提交
  2. 23 12月, 2012 10 次提交
  3. 19 12月, 2012 6 次提交
  4. 17 12月, 2012 4 次提交
  5. 16 12月, 2012 2 次提交
  6. 14 12月, 2012 4 次提交
  7. 13 12月, 2012 2 次提交
    • J
      contrib: update stats/mailmap script · 53474eb9
      Jeff King 提交于
      This version changes quite a few things:
      
        1. The original parsed the mailmap file itself, and it did
           it wrong (it did not understand entries with an extra
           email key).
      
           Instead, this version uses git's "%aE" and "%aN"
           formats to have git perform the mapping, meaning we do
           not have to read .mailmap at all, but still operate on
           the current state that git sees (and it also works
           properly from subdirs).
      
        2. The original would find multiple names for an email,
           but not the other way around.
      
           This version can do either or both. If we find multiple
           emails for a name, the resolution is less obvious than
           the other way around. However, it can still be a
           starting point for a human to investigate.
      
        3. The original would order only by count, not by recency.
      
           This version can do either. Combined with showing the
           counts, it can be easier to decide how to resolve.
      
        4. This version shows similar entries in a blank-delimited
           stanza, which makes it more clear which options you are
           picking from.
      Signed-off-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      53474eb9
    • J
      .mailmap: normalize emails for Linus Torvalds · 0e230644
      Jeff King 提交于
      Linus used a lot of different per-machine email addresses in
      the early days. This means that "git shortlog -nse" does not
      aggregate his counts, and he is listed well below where he
      should be (8th instead of 3rd).
      Signed-off-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      0e230644