Skip to content

Instantly share code, notes, and snippets.

@KarsonAlford
KarsonAlford / Clone All Repos
Last active December 4, 2025 13:46
gh-clone-all.ps1
# Install Github CLI
# winget install -e --id GitHub.cli
# Log into Github
# gh auth login
$clonePath = "c:/all"
$orgName = 'Your Org Name Goes Here!!!'
New-Item -ItemType Directory -Force -Path $clonePath