Created
March 17, 2018 06:39
-
-
Save HighwayofLife/d1340645c9074761bc464f85c169afa4 to your computer and use it in GitHub Desktop.
Git Clone all Github Organization Repositories in a single command
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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