Skip to content

Instantly share code, notes, and snippets.

@OlegGorj
Created November 15, 2019 21:11
Show Gist options
  • Save OlegGorj/2be30007df13d1112333fd8901454791 to your computer and use it in GitHub Desktop.
Save OlegGorj/2be30007df13d1112333fd8901454791 to your computer and use it in GitHub Desktop.

Clones all repods from the Org

curl -u <Personal Token>:x-oauth-basic 'https://api.github.com/orgs/<ORG>/repos?per_page=100' | jq '.[].ssh_url' -r | while read url; do git clone "$url"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment