photo of the author

August 1, 2019

A quick way to clone a list of @GitHub repos.

Given a file, repos.txt with a repository’s SSH link on each line (and your SSH keys set up), run:

xargs -n1 git clone < repos.txt

Will clone all repositories into the current folder.