How to git blame to see what code from a single committer before X date has survived? -
i joined experienced developer team complete ror newb year ago , we're trying guess how of code wrote in first 6 months has survived.
i think can use git blame on entire repo , grep username i'm hitting wall.
there many git statistics tools, maybe see if job need? click here , here.
edit:
i went discover 1 of these tools , found suits you. gitinspector, following it's text output format:
$ ./gitinspector.py -wthl /path/to/some/git/repository following historical commit information, author, found in repository: author commits insertions deletions % of changes john smith 288 7721 4617 39.19 james johnson 135 8910 2422 35.99 robert brown 71 2564 1352 12.44 michael davids 134 2943 954 12.38 below number of rows each author have survived , still intact in current revision: author rows % in comments john smith 3533 22.02 james johnson 6113 52.15 robert brown 1123 21.19 michael davids 1464 20.15 following history timeline has been gathered repository: author 2012w37 2012w38 2012w39 2012w40 2012w41 2012w42 2012w43 john smith --++++++ --+++ --++++++ -+++ ---+++++ ----+++++ . james johnson + -+++++++ ++++ -++++++++ --++ --++++ -+++++++ robert brown --+++ + . -+++ + . michael davids +++ ++ + + + . modified rows: 1522 3832 7553 6143 5833 5123 1477 extensions below found in repository history (extensions used during statistical analysis marked): xml [java] pdf txt css
Comments
Post a Comment