From: Paul V. <pau...@gm...> - 2007-11-26 11:19:25
|
Ilpo Järvinen wrote: > Hi, > > I wonder how does it decide that there are 10 commits from me in -rc3? > > Git disagrees: > $ git-log --author="Ilpo .*" --pretty=oneline ^v2.6.24-rc2 v2.6.24-rc3 | wc -l > 8 > ...and then rc2 list is missing those two (57 vs 59). > > Other people seem to have such incorrect numbers too. > > I think I found the issue. There are a few actually: We check for >= prev_version and <= ths_version. This should be '> prev_version'. I'll fix this ASAP. That would fix the issue with reporting 10 instead of 8. In this particular case I can see 3 different variations of Ilpo's name: Ilpo J<E4>rvinen <ilp...@he...> Ilpo Järvinen <ilp...@he...> Ilpo Jarvinen <ilp...@he...> (both in our DB and with the git-log command). If you look in the current output on the website (underneath the graph) you will those 3 names as well. I have to think about that last issue. Cheers, Paul. |