Skip to content

Instantly share code, notes, and snippets.

@vinzv
Forked from potter0815/cloneall.sh
Created June 14, 2021 19:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vinzv/42b705a7ee556a4345a35d73adda6ffc to your computer and use it in GitHub Desktop.
Save vinzv/42b705a7ee556a4345a35d73adda6ffc to your computer and use it in GitHub Desktop.
clone all private repos of an organization
#!/bin/bash
#requires jq -> http://stedolan.github.io/jq/
#optional change working_dir
working_dir=${1-$(pwd)}
cd $working_dir
user="github_username"
token="application token"
organization="Organization_Name"
repo_list=$(curl https://api.github.com/orgs/$organization/repos?type=private\&per_page=100 -u ${user}:${token} | jq .[].ssh_url | sed -e 's/^"//' -e 's/"$//')
for repo in $repo_list
do
echo "Repo found: $repo"
git clone $repo
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment