Skip to content

Instantly share code, notes, and snippets.

@sricola
Last active July 28, 2019 17:31
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 sricola/59faeb0f6d49c147495a3e87942ceb74 to your computer and use it in GitHub Desktop.
Save sricola/59faeb0f6d49c147495a3e87942ceb74 to your computer and use it in GitHub Desktop.
Clone all repos in Github Organization
# Fetch token from https://github.com/settings/tokens
EXPORT GITHUB_TOKEN=your_token

# Your org name
EXPORT GITHUB_ORG=your_org

curl --silent https://api.github.com/orgs/$GITHUB_ORG/repos?access_token=$GITHUB_TOKEN | \
grep -o "git@github.com:$GITHUB_ORG/[^ ,\"]\+" | \
xargs -L 1 git clone

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment