A lightweight tool, written in GO, to display the contributors statistics of a Git project.
Installation
Homebrew
brew tap ajardin/formulas
brew install git-contribs
Manual
Download the binary corresponding to your operating system from
the releases page.
Compile by yourself the binary corresponding to your operating system from the source code.
Usage
# Default settings from a project where Git has been initialized.
git-contribs
# With a specific path to a Git project (default value is ".").
git-contribs -path="${HOME}/myproject"
# From a specific date (default value is "01 Jan 2000").
git-contribs -start="01 May 2019"
# With a specific threshold (default value is 10).
git-contribs -threshold=100
# All flags can also be used at the same time.
git-contribs -path="${HOME}/myproject" -start="01 May 2019" -threshold=100