Cool, never used hg, thanks.
Git might have a module; I've never seen it if it does.
However, having it separate to git means we can pull in other data to build up a complete picture of the users activity - the comments made in an issue tracker for instance.
Comments
> http://jarofgreen.co.uk/2011/04/introducing-creepycoder/
hg has a pretty great extension shipped with it doing that kind of stats collecting: churn. Git might have something similar already, no?
For instance, your graphs 2 and 3 (commits by hour of day and commits by day of week) can be obtained through the following (tested on pypy's repo):
(-c counts changesets rather than diff lines; -s sorts by aggregation key rather than resultcount; -f aggredates on an strftime-like dateformat)Cool, never used hg, thanks. Git might have a module; I've never seen it if it does. However, having it separate to git means we can pull in other data to build up a complete picture of the users activity - the comments made in an issue tracker for instance.