Skip to content
New issue

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

Add pluggable "contributors since..." bash script to /tools folder #1493

Closed
Aaronontheweb opened this issue Dec 3, 2015 · 0 comments
Closed
Assignees

Comments

@Aaronontheweb
Copy link
Member

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

  • the part that says v1.0.4 needs to be a parameter
@skotzko skotzko self-assigned this Dec 3, 2015
skotzko added a commit to skotzko/akka.net that referenced this issue Dec 7, 2015
skotzko added a commit to skotzko/akka.net that referenced this issue Dec 7, 2015
@skotzko skotzko closed this as completed in 42bebd0 Dec 8, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants