Skip to content

Instantly share code, notes, and snippets.

@kstarzyk
Last active April 22, 2017 16:17
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 kstarzyk/a815633a6fc50e30184047607a4a7ba1 to your computer and use it in GitHub Desktop.
Save kstarzyk/a815633a6fc50e30184047607a4a7ba1 to your computer and use it in GitHub Desktop.
Clone all user repositories from github [one-liner]
curl https://api.github.com/users/<GITHUB_LOGIN>/repos | grep "clone" | grep -oE "https:(.*).git" | xargs -l bash -c 'git clone $0'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment