Skip to content

Instantly share code, notes, and snippets.

@CrashenX
Last active May 1, 2019 23:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CrashenX/b9f9c8cf895d6088d75d0e54964ce135 to your computer and use it in GitHub Desktop.
Save CrashenX/b9f9c8cf895d6088d75d0e54964ce135 to your computer and use it in GitHub Desktop.
Get Git Contributor List
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