Felipe Contreras <felipe.contreras@xxxxxxxxx> writes: > Hi, > > I love the new option to run a cccmd and how good it works on the > linux kernel, but I couldn't find a generic script. So I decided to > write my own. > > It's very simple, it just looks into the authors of the commits that > modified the lines being overridden (git blame). It's not checking for > s-o-b, or anything fancy. > > Comments? > #!/usr/bin/env ruby > > @commits = {} # keeps a count of commits per author > > ARGV.each do |filename| > File.open(filename) do |patch_file| > patch_file.each_line do |patch_line| > case patch_line > when /^---\s+(\S+)/ > @source = $1[2..-1] > when /^@@\s-(\d+),(\d+)/ > blame = `git blame -p -L #{$1},+#{$2} #{@source} | grep author` > blame.each_line do |al| > key, value = al.chomp.split(" ", 2) > case key > when "author" > @name = value > when "author-mail" > @mail = value > author = "\"#{@name}\" #{@mail}" > @commits[author] ||= 0 > @commits[author] += 1 > end > end > end > end > end > end Comments. #0. Gaahhh, my eyes, my eyes!! Can't you do this ugly run of infinite number of "end"s? #1. You are not making sure that you start blaming from the commit the patch is based on, so your -La,b line numbers can be off. If you can assume that you are always reading format-patch output, you can learn which commit to start from by reading the first "magic" line. #2. If you have two patch series that updates one file twice, some changes in your second patch could even be an update to the changes you introduced in your first patch. After you fix issue #1, you would probably want to fix this by excluding the commits you have already sent the blames for. #3. Does the number of commits you keep per author have any significance? I know it doesn't in the implementation you posted, but should it, and if so how? > @commits.each_key do |a| > puts a > end > > -- > Felipe Contreras > -- > To unsubscribe from this list: send the line "unsubscribe git" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html