git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 00/11] Add new git-related helper to contrib
@ 2013-04-25 19:59 Felipe Contreras
  2013-04-25 19:59 ` [PATCH v4 01/11] " Felipe Contreras
                   ` (10 more replies)
  0 siblings, 11 replies; 17+ messages in thread
From: Felipe Contreras @ 2013-04-25 19:59 UTC (permalink / raw)
  To: git; +Cc: Junio C Hamano, Ramkumar Ramachandra, Duy Nguyen,
	Felipe Contreras

Hi,

Previously known as git-cc-cmd, I've renamed it git-related (tentatively). I
removed support for aliases, as I don't think it's very useful, and I've added
support for mailmap, which I think covers similar use-cases.

This script allows you to get a list of relevant persons to Cc when sending a
patch series.

  % git cc-cmd v1.8.1.6^^1..v1.8.1.6^^2
  Junio C Hamano <gitster@pobox.com> (signer: 84%, author: 15%)
  "Nguyễn Thái Ngọc Duy" <pclouds@gmail.com> (author: 38%, signer: 7%)
  Michael Haggerty <mhagger@alum.mit.edu> (author: 15%)
  Jean-Noel Avila <jn.avila@free.fr> (signer: 7%)
  "Jean-Noël AVILA" <avila.jn@gmail.com> (author: 7%)
  "Henrik Grubbström" <grubba@grubba.org> (author: 7%)
  Clemens Buchacher <drizzd@aon.at> (author: 7%)
  Joshua Jensen <jjensen@workspacewhiz.com> (author: 7%)
  Johannes Sixt <j6t@kdbg.org> (signer: 7%)

It finds people that might be interesting in a patch, by going back through the
history for each single hunk modified, and finding people that reviewed,
acknowledge, signed, or authored the code the patch is modifying.

It does this by running 'git blame' incrementally on each hunk, and then
parsing the commit message. After gathering all the relevant people, it groups
them to show what exactly was their role when the participated in the
development of the relevant commit, and on how many relevant commits they
participated. They are only displayed if they pass a minimum threshold of
participation.

The code finds the changes in each commit in the list, runs 'git blame'
to see which other commits are relevant to those lines, and then adds
the author and signer to the list.

Finally, it calculates what percentage of the total relevant commits
each person was involved in, and if it passes the threshold, it goes in.

You can also choose to show the commits themselves:

  % git cc-cmd --commits v1.8.1.6^^1..v1.8.1.6^^2
  9db9eec attr: avoid calling find_basename() twice per path
  94bc671 Add directory pattern matching to attributes
  82dce99 attr: more matching optimizations from .gitignore
  593cb88 exclude: split basename matching code into a separate function
  b559263 exclude: split pathname matching code into a separate function
  4742d13 attr: avoid searching for basename on every match
  f950eb9 rename pathspec_prefix() to common_prefix() and move to dir.[ch]
  4a085b1 consolidate pathspec_prefix and common_prefix
  d932f4e Rename git_checkattr() to git_check_attr()
  2d72174 Extract a function collect_all_attrs()
  8cf2a84 Add string comparison functions that respect the ignore_case variable.
  407a963 Merge branch 'rr/remote-helper-doc'
  ec775c4 attr: Expand macros immediately when encountered.

But wait, there's more: you can also specify a list of patch files, which means
this can be used for 'git send-emails' --cc-cmd option.


Felipe Contreras (11):
  Add new git-related  helper to contrib
  contrib: related: add option parsing
  contrib: related: add support for multiple patches
  contrib: related: add option to show commits
  contrib: related: add option to parse from committish
  contrib: related: parse committish like format-patch
  contrib: related: fix parsing of rev-list args
  contrib: related: support multiple roles
  contrib: related: sort by participation
  contrib: related: group persons with same email
  contrib: related: add support for mailmap

 contrib/related/git-related | 272 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 272 insertions(+)
 create mode 100755 contrib/related/git-related

-- 
1.8.2.1

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2013-05-13 23:17 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-25 19:59 [PATCH v4 00/11] Add new git-related helper to contrib Felipe Contreras
2013-04-25 19:59 ` [PATCH v4 01/11] " Felipe Contreras
2013-04-26 22:52   ` Felipe Contreras
2013-04-26 23:01     ` Junio C Hamano
2013-04-26 23:23       ` Felipe Contreras
2013-04-27  3:01         ` Ramkumar Ramachandra
2013-05-13 23:17           ` Felipe Contreras
2013-04-25 19:59 ` [PATCH v4 02/11] contrib: related: add option parsing Felipe Contreras
2013-04-25 19:59 ` [PATCH v4 03/11] contrib: related: add support for multiple patches Felipe Contreras
2013-04-25 19:59 ` [PATCH v4 04/11] contrib: related: add option to show commits Felipe Contreras
2013-04-25 19:59 ` [PATCH v4 05/11] contrib: related: add option to parse from committish Felipe Contreras
2013-04-25 19:59 ` [PATCH v4 06/11] contrib: related: parse committish like format-patch Felipe Contreras
2013-04-25 19:59 ` [PATCH v4 07/11] contrib: related: fix parsing of rev-list args Felipe Contreras
2013-04-25 19:59 ` [PATCH v4 08/11] contrib: related: support multiple roles Felipe Contreras
2013-04-25 19:59 ` [PATCH v4 09/11] contrib: related: sort by participation Felipe Contreras
2013-04-25 19:59 ` [PATCH v4 10/11] contrib: related: group persons with same email Felipe Contreras
2013-04-25 19:59 ` [PATCH v4 11/11] contrib: related: add support for mailmap Felipe Contreras

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).