Skip to content

Instantly share code, notes, and snippets.

@AnasAboreeda
Created September 26, 2017 13:54
Show Gist options
  • Select an option

  • Save AnasAboreeda/5e874e9ded11b4f65f613d54bac52d96 to your computer and use it in GitHub Desktop.

Select an option

Save AnasAboreeda/5e874e9ded11b4f65f613d54bac52d96 to your computer and use it in GitHub Desktop.
Clone All organization private/pullic repos
ORGANIZATION=<organization name>
curl -s https://api.github.com/orgs/$ORGANIZATION/repos\?per_page\=200&access_token=<access_token> | grep clone_url | awk -F '"' '{print $4}' | xargs -n 1 -P 4 git clone
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment