Last active
September 21, 2021 06:43
-
-
Save macedd/aa31eeea26e2ace72022 to your computer and use it in GitHub Desktop.
Generate Stats for a Git Repository
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Tools installation | |
pip install gitinspector | |
gem install git_stats | |
# Generate the reports | |
cd git_proj | |
git_stats generate | |
gitinspector -f php,js,less -F html > git_stats/inspector.html | |
# Generate time-sheets | |
curl -o /usr/bin/git-timesheet https://raw.githubusercontent.com/leonid-shevtsov/git-timesheet/master/git-timesheet.rb | |
chmod +x /usr/bin/git-timesheet | |
git-timesheet --author [email protected] --since 2015-03-01 > git_stats/user.txt | |
gem install git_time_extractor | |
git_time_extractor -e 120 -s 4 > git_stats/output_time.csv |
Should solve general use for stats
https://github.com/hoxu/gitstats
gitstats ./ ./stats
New fidings around git stats
- Pro tool (paid): https://www.gitclear.com
- Commits chart: https://github.com/IonicaBizau/git-stats
- https://git-quick-stats.sh/
https://www.gitclear.com/gallery_of_free_git_stats_screenshots_examples
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For a quick ref, checkout
git shortlog -sn --no-merges