Last active
May 6, 2024 22:01
-
-
Save gabrielrufino/41e41cb3c8bf471b364570532c1c600d to your computer and use it in GitHub Desktop.
Clone all repositories from some owner using GitHub CLI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OWNER=gabrielrufino | |
gh repo list $OWNER --limit 4000 --no-archived | while read -r repo _; do | |
gh repo clone "$repo" "$repo" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment