Skip to content

Instantly share code, notes, and snippets.

@ganobrega
Created March 26, 2025 01:38
Show Gist options
  • Save ganobrega/5b7b97b14cca508c150b3aa76706f0f5 to your computer and use it in GitHub Desktop.
Save ganobrega/5b7b97b14cca508c150b3aa76706f0f5 to your computer and use it in GitHub Desktop.
Download all repositories from a organization
#!/bin/bash
eval "$(ssh-agent -s)"
ORG_NAME="username-of-organization"
gh repo list $ORG_NAME --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