Skip to content

Instantly share code, notes, and snippets.

@HighwayofLife
Created March 17, 2018 06:39
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 HighwayofLife/d1340645c9074761bc464f85c169afa4 to your computer and use it in GitHub Desktop.
Save HighwayofLife/d1340645c9074761bc464f85c169afa4 to your computer and use it in GitHub Desktop.
Git Clone all Github Organization Repositories in a single command
#!/bin/sh
ORG="deck15"
curl -s https://api.github.com/orgs/$ORG/repos?per_page=200 | jq -r '.[].ssh_url' | xargs -I {} git clone {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment