We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need to take this bash script that @Horusiath came up with:
git log v1.0.4..HEAD --oneline --numstat --pretty=format:%an --no-merges --abbrev-commit | gawk 'author == "" { author = $0; next } /^$/ { author = ""; next} {added[author] += $1; removed[author] +=$2 } END { for(author in added) { printf "%s\t%s\t%s\t%s\n", added[author]+removed[author], added[author], removed[author], author } }' | sort -n -k1 -r
And save it as a bash shell script to the tools folder, but with the following modifications
tools
v1.0.4
The text was updated successfully, but these errors were encountered:
fix akkadotnet#1493 - list contributors sorted by commits. Print in M…
6a2ec35
…D table form
e8d5180
42bebd0
skotzko
No branches or pull requests
Need to take this bash script that @Horusiath came up with:
And save it as a bash shell script to the
tools
folder, but with the following modificationsv1.0.4
needs to be a parameterThe text was updated successfully, but these errors were encountered: