Last active
May 1, 2019 23:42
-
-
Save CrashenX/b9f9c8cf895d6088d75d0e54964ce135 to your computer and use it in GitHub Desktop.
Get Git Contributor List
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
ORG='libvirt' REPO='libvirt'; for i in {1..5}; do curl "https://api.github.com/repos/$ORG/$REPO/contributors?per_page=100&page=$i" 2>/dev/null | jq -r '.[] | "\(.contributions)\t\(.html_url)"'; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment