TODO.txt 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. - Authors
  28. - List of authors
  29. - show only first 10 and rest on separate page?
  30. - DONE (T): author, commits (%), LOC?, first commit, last commit
  31. - DONE (T): Developer of the Month: month, author, commits, LOC?
  32. - DONE (T): Author of Year
  33. - Files
  34. - Total Files
  35. - Average file size
  36. - Average revisions per file
  37. - (G) File Count: x = date, y = files
  38. - (G) Average file size: x = date, y = lines/file
  39. - (T) File Extensions (or mime types from "file"?): extension, files (%), lines (%), lines/file
  40. - (T) Largest Files?
  41. - (T) Files With Most Revisions?
  42. - Activity by Time?
  43. - DONE Hour of Day
  44. - DONE Day of Week
  45. - Hour of weekday -> 7x25?
  46. - Month of Year
  47. - (G?) Last 30 days
  48. - (G?) Last 12 months
  49. - (G) Lines of Code: x = date, y = lines
  50. - Tags
  51. - DONE (T): Name, Date
  52. - Lines
  53. - Authors (count of people contributing after last version)?
  54. - Author page for each author
  55. - Name, mail
  56. - Total commits (%)
  57. - LOC (%)
  58. - Last commit: date
  59. - First commit: date
  60. - Activity by Clock Time
  61. - (G) Hour of Day
  62. - (G) Day of Week
  63. - (T) Activity in Directories: Directory, Changes, LOC, LOC/change
  64. - (Most Recent Commits?)
  65. [Stats in StatSVN]
  66. - General
  67. - Report Period (first/last date of commits)
  68. - Total files?
  69. - Total LOC?
  70. - Developers
  71. - Main stats
  72. - Lines of Code: x = date, y = lines, releases/tags as vertical lines
  73. - Table: Top 10 Authors: author, LOC (%)
  74. - Table: Repository tags: name, date, lines, LOC Churn, Developers
  75. - Tree: Directories: dir (N files, N lines)
  76. - Developers
  77. - Number of developers
  78. - Table: author, changes (%), LOC (%), LOC/change
  79. - Graph: Lines of Code: x = date, y = lines, colored lines for each author
  80. - Table: Developer of the Month: month, author, lines
  81. - Graph: Developer Activity
  82. - Graph: Author Activity (bar for each author, showing modifying/adding percentages) (could be table)
  83. - Graphs: Activity by Clock Time
  84. - Hour of Day
  85. - Day of Week
  86. - Commit logs
  87. - Lines of Code (same as main graph)
  88. - File Statistics
  89. - Graph: File Sizes and File Counts: x = date, y = files
  90. - Graph: Average File Size (x = date, y = LOC/file)
  91. - Table: File Types
  92. - Table: Largest Files
  93. - Table: Files With Most Revisions
  94. - Directory sizes
  95. - "Repo heatmap"?
  96. - LOC and Churn
  97. [Graphics]
  98. - Use gnuplot, graphviz etc ?
  99. [Usage]
  100. - $ statgit [-o html] /path/to/git /output/dir
  101. [name]
  102. - statgit or gitstats (no google hits for either)
  103. [Misc]
  104. - use sortable.js ?
  105. - could show some statistics from last year, month, etc... pisg-like?
  106. - style: tabs at top for different pages