123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. - development statistics generator for git
  2. - should be as versatile as statcvs / statsvn
  3. [Information]
  4. - git-log
  5. - git-ls-files
  6. - Current list of files
  7. - git-ls-tree -r <revision>
  8. - get a list of files in each revision
  9. - git-log --stat or --shortstat - N files changed, N insertions, N deletions
  10. - git-log --name-status - svn-like list of modifications for each commit
  11. - git-rev-list --all
  12. - first and last commit
  13. - git-show-ref --tags
  14. - not all tags are tags on refs?
  15. - git-log |git-shortlog -s
  16. - author: number of commits
  17. - git-what-changed
  18. - XXX git-log --pretty=oneline |wc -l != git-rev-list --all |wc -l
  19. - git-rev-list HEAD == git-log --pretty=oneline
  20. [Stats]
  21. - General
  22. - Report Period (git-log)
  23. - DONE Total Files (git-ls-files)
  24. - DONE Total LOC?
  25. - DONE Total Commits
  26. - DONE Authors
  27. - Activity by Time?
  28. - (G?) Last 30 days
  29. - (G?) Last 12 months
  30. - DONE Hour of Day
  31. - DONE Day of Week
  32. - Hour of weekday -> 7x25?
  33. - Month of Year
  34. - DONE Commits by year/month
  35. - DONE Commits by year
  36. - Authors
  37. - List of authors
  38. - show only first 10 and rest on separate page?
  39. - DONE (T): author, commits (%), LOC?, first commit, last commit
  40. - DONE (T): Developer of the Month: month, author, commits, LOC?
  41. - DONE (T): Author of Year
  42. - Files
  43. - Total Files
  44. - Average file size
  45. - Average revisions per file
  46. - (G) File Count: x = date, y = files
  47. - (G) Average file size: x = date, y = lines/file
  48. - (T) File Extensions (or mime types from "file"?): extension, files (%), lines (%), lines/file
  49. - (T) Largest Files?
  50. - (T) Files With Most Revisions?
  51. - (G) Lines of Code: x = date, y = lines
  52. - Tags
  53. - DONE (T): Name, Date
  54. - Lines
  55. - Authors (count of people contributing after last version)?
  56. - Author page for each author
  57. - Name, mail
  58. - Total commits (%)
  59. - LOC (%)
  60. - Last commit: date
  61. - First commit: date
  62. - Activity by Clock Time
  63. - (G) Hour of Day
  64. - (G) Day of Week
  65. - (T) Activity in Directories: Directory, Changes, LOC, LOC/change
  66. - (Most Recent Commits?)
  67. [Stats in StatSVN]
  68. - General
  69. - Report Period (first/last date of commits)
  70. - Total files?
  71. - Total LOC?
  72. - Developers
  73. - Main stats
  74. - Lines of Code: x = date, y = lines, releases/tags as vertical lines
  75. - Table: Top 10 Authors: author, LOC (%)
  76. - Table: Repository tags: name, date, lines, LOC Churn, Developers
  77. - Tree: Directories: dir (N files, N lines)
  78. - Developers
  79. - Number of developers
  80. - Table: author, changes (%), LOC (%), LOC/change
  81. - Graph: Lines of Code: x = date, y = lines, colored lines for each author
  82. - Table: Developer of the Month: month, author, lines
  83. - Graph: Developer Activity
  84. - Graph: Author Activity (bar for each author, showing modifying/adding percentages) (could be table)
  85. - Graphs: Activity by Clock Time
  86. - Hour of Day
  87. - Day of Week
  88. - Commit logs
  89. - Lines of Code (same as main graph)
  90. - File Statistics
  91. - Graph: File Sizes and File Counts: x = date, y = files
  92. - Graph: Average File Size (x = date, y = LOC/file)
  93. - Table: File Types
  94. - Table: Largest Files
  95. - Table: Files With Most Revisions
  96. - Directory sizes
  97. - "Repo heatmap"?
  98. - LOC and Churn
  99. [Graphics]
  100. - Use gnuplot, graphviz etc ?
  101. [Usage]
  102. - $ statgit [-o html] /path/to/git /output/dir
  103. [name]
  104. - statgit or gitstats (no google hits for either)
  105. [Misc]
  106. - use sortable.js ?
  107. - could show some statistics from last year, month, etc... pisg-like?
  108. - style: tabs at top for different pages