Skip to content

Instantly share code, notes, and snippets.

@alanfzf
Created July 25, 2025 00:27
Show Gist options
  • Select an option

  • Save alanfzf/d460a26eab41d5a809f75b7e2777a8ad to your computer and use it in GitHub Desktop.

Select an option

Save alanfzf/d460a26eab41d5a809f75b7e2777a8ad to your computer and use it in GitHub Desktop.
Clone all githubs repos from specific organization
#!/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