Last active
August 29, 2015 14:01
-
-
Save lukeholder/f8a00e5dbb51eadb91a3 to your computer and use it in GitHub Desktop.
How do download all cartslyst repos from the command line. no need to subscribe all the time
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
mkdir Cartalyst | |
cd Cartalyst | |
curl -s https://api.github.com/orgs/jenkinsci/repos | ruby -rjson -e 'JSON.load(STDIN.read).each {|repo| %x[git clone #{repo["ssh_url"]} ]}' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment