Skip to content

Instantly share code, notes, and snippets.

@switchspan
Forked from nikhita/list-all-repos.sh
Created August 25, 2023 18:06
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 switchspan/19e35f29c30087002f87cde52ae61be6 to your computer and use it in GitHub Desktop.
Save switchspan/19e35f29c30087002f87cde52ae61be6 to your computer and use it in GitHub Desktop.
Generate a list of all repos in a GitHub to paste into Excel
#!/usr/bin/env bash
# This script generates a list of repos in a GitHub org.
# The list can be pasted directly to a Microsoft Excel sheet.
# You will need to use your GitHub username in the username field.
# Update the page=N number to get the complete list of repos.
curl --silent --user "username" "https://api.github.com/orgs/vmware/repos?page=1&per_page=100" | npx jq '.[].html_url' | while read repo
do
echo "=Hyperlink("$repo","$repo")"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment