TODO.txt 3.4KB

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