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