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