Skip to content

Instantly share code, notes, and snippets.

@bmacauley
Last active June 15, 2018 19:12
Show Gist options
  • Save bmacauley/ff921c5a1444e94093f1a7bad295d243 to your computer and use it in GitHub Desktop.
Save bmacauley/ff921c5a1444e94093f1a7bad295d243 to your computer and use it in GitHub Desktop.
Clone github org repos
# export GITHUB_ORG=<github org>;curl -s https://$GITHUB_TOKEN@api.github.com/orgs/$GITHUB_ORG/repos | jq '.[].ssh_url' | xargs -n 1 git clone
curl -s https://api.github.com/orgs/$GITHUB_ORG/repos | jq '.[].ssh_url' | xargs -n 1 git clone
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment