Created
July 25, 2025 00:27
-
-
Save alanfzf/d460a26eab41d5a809f75b7e2777a8ad to your computer and use it in GitHub Desktop.
Clone all githubs repos from specific organization
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
| #!/bin/bash | |
| gh repo list myorgname --limit 4000 | 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