On Fri, Jul 11, 2008 at 11:22 PM, Johannes Schindelin <Johannes.Schindelin@xxxxxx> wrote: > Hi, > > On Fri, 11 Jul 2008, Sverre Rabbelier wrote: > >> I temporarily modified the code to output %04d instead of %4d so that I >> could do the following: >> >> $ stats.py author -a > full_activity_sortable.txt > > You might be delighted to read up on the "-n" switch to sort(1). Heh, yes, very much so :). I probably shouldof known there is such an option, but having the source at hand the change to '%4d' was the first thing that came to mind. >> A few highlights from the sorted file: >> >> $ cat full_activity_sortable.txt | sort | tail -n 20 > > More intuitive would have been "sort -r | head -n 20", I guess. Since that wouldof put the 'number one' at the top? Yeah, I guess it wouldof, nice one. >> 0170: 2721+ 1060- = refs.c > > I guess that 170 is the total number of commit touching that file, the "+" > and "-" numbers the changes respectively? Correct, I probably should have explain that. The +es are how many lines were added and the -es are the total amount of lines that were deleted, yup. > I think quite a lot of our changes do code moves; this should be accounted > for differently. Yeah, I wish 'git log -C -C -M --numstat --sacrifice-chicken --pretty=format:%ae --' would take care of that... That is, a git-blame like mechanism that would detect such moves on a per-commit basis and report them would be very useful to me. >> For some reason you people can't seem to make up your mind about a >> file that's not even 1500 lines in size ;). > > Heh. We might need to change it once or twice, in the future. *chuckles*, I'm curious why the Makefile is such a hard file to get right :). >> A note is in order here, this data was mined with "git log --num-stat" >> so things like moving files and copying files are not accounted for. > > In my opinion it would be even more interesting to see code moves (i.e. > not whole files). For example, we moved some stuff from builtins into the > library. The real change here is not in the lines added and deleted. Very much so, but the former I figure can be easily done with 'git log -C -C -M' I discovered (I need to parse it's output though, and also determine what to do with moves statistics wise. Should changes made due to moves just be ignored?) >> I thought about using git-blame to gather this info before, but it is >> not the right tool for the job. If anyone else has any idea's on what >> would be better please let me know and I'll happily dig into it :). > > I think that you need to analyze the diff directly. One possible (quick > 'n dirty) way would be to cut out long consecutive "+" parts of the hunks, > replace the "-" by "+", and use "git diff --no-index" to do the hard part > of searching for that code in the "-" part of the original diff. That sounds interesting, I won't need to actually do that though, I already have a diff parser that gives me the lines added VS lines deleted on a hunk-by-hunk basis. If it is a true move (e.g., code removed in file X and added in file Y) it should be trivial to detect that. Something along the lines of: for hunk in added: if hunk in deleted: print("Over here!!") > Just an idea, Much appreciated! I will look into this. -- Cheers, Sverre Rabbelier -- 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