And you shall know the truth,
& the truth shall make you free.
John 8:32
Clone All Repositories of a GitHub User

Clone All Repositories of a GitHub User

Feb 2, 2020

Steps

Script

curl -s https://api.github.com/users/[UserName]/repos | grep "clone_url" | awk '{print $2}' | sed -e 's/"//g' -e 's/,//g' | xargs -n1 git clone

Required Tools

OS