克隆使用者名稱的所有儲存庫
執行以下命令,用 username 替換 username,將該使用者的所有 GitHub 儲存庫克隆到當前目錄。
curl "https://api.github.com/users/username/repos?page=1&per_page=100" | grep -e 'git_url*' | cut -d \" -f 4 | xargs -L1 git clone
這隻會克隆前 100 個儲存庫。
執行以下命令,用 username 替換 username,將該使用者的所有 GitHub 儲存庫克隆到當前目錄。
curl "https://api.github.com/users/username/repos?page=1&per_page=100" | grep -e 'git_url*' | cut -d \" -f 4 | xargs -L1 git clone
這隻會克隆前 100 個儲存庫。