how to clone git repositories code example
Example 1: clone repository git
git clone https://[email protected]/teamsinspace/documentation-tests.git
Example 2: how to clone all git repositories
GHUSER=CHANGEME; curl "https://api.github.com/users/$GHUSER/repos?per_page=1000" | grep -o 'git@[^"]*' | xargs -L1 git clone