TODO.txt 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. - DONE (T): Developer of the Month: month, author, commits, LOC?
  51. - DONE (T): Author of Year
  52. - Files
  53. - DONE Total Files
  54. - DONE Total Lines
  55. - DONE Average file size
  56. - Average revisions per file
  57. - DONE (G) File Count by Date: x = date, y = files
  58. - (G) Average file size: x = date, y = lines/file
  59. - (T) File Extensions (or mime types from "file"?): extension, files (%), lines (%), lines/file
  60. - extensions: ext -> { files, lines? }
  61. - git-ls-files -> basename -> check ext
  62. - (T) Largest Files?
  63. - (T) Files With Most Revisions?
  64. - (G) Lines of Code: x = date, y = lines
  65. - Tags
  66. - DONE (T): Name, Date
  67. - Lines
  68. - Authors (count of people contributing after last version)?
  69. - Author page for each author
  70. - Name, mail
  71. - Total commits (%)
  72. - LOC (%)
  73. - Last commit: date
  74. - First commit: date
  75. - Activity by Clock Time
  76. - (G) Hour of Day
  77. - (G) Day of Week
  78. - (T) Activity in Directories: Directory, Changes, LOC, LOC/change
  79. - (Most Recent Commits?)
  80. [Stats in StatSVN]
  81. - General
  82. - Report Period (first/last date of commits)
  83. - Total files?
  84. - Total LOC?
  85. - Developers
  86. - Main stats
  87. - Lines of Code: x = date, y = lines, releases/tags as vertical lines
  88. - Table: Top 10 Authors: author, LOC (%)
  89. - Table: Repository tags: name, date, lines, LOC Churn, Developers
  90. - Tree: Directories: dir (N files, N lines)
  91. - Developers
  92. - Number of developers
  93. - Table: author, changes (%), LOC (%), LOC/change
  94. - Graph: Lines of Code: x = date, y = lines, colored lines for each author
  95. - Table: Developer of the Month: month, author, lines
  96. - Graph: Developer Activity
  97. - Graph: Author Activity (bar for each author, showing modifying/adding percentages) (could be table)
  98. - Graphs: Activity by Clock Time
  99. - Hour of Day
  100. - Day of Week
  101. - Commit logs
  102. - Lines of Code (same as main graph)
  103. - File Statistics
  104. - Graph: File Sizes and File Counts: x = date, y = files
  105. - Graph: Average File Size (x = date, y = LOC/file)
  106. - Table: File Types
  107. - Table: Largest Files
  108. - Table: Files With Most Revisions
  109. - Directory sizes
  110. - "Repo heatmap"?
  111. - LOC and Churn
  112. [Graphics]
  113. - Use gnuplot, graphviz etc ?
  114. [Usage]
  115. - $ statgit [-o html] /path/to/git /output/dir
  116. [name]
  117. - statgit or gitstats (no google hits for either)
  118. [Misc]
  119. - use sortable.js ?
  120. - could show some statistics from last year, month, etc... pisg-like?
  121. - style: tabs at top for different pages