Skip to content

Instantly share code, notes, and snippets.

@OctopusET
Created November 21, 2024 18:07
Show Gist options
  • Select an option

  • Save OctopusET/b67c1587e670bb4fdbe1e6df6377b579 to your computer and use it in GitHub Desktop.

Select an option

Save OctopusET/b67c1587e670bb4fdbe1e6df6377b579 to your computer and use it in GitHub Desktop.
Remove all members from github organization
  1. Goto https://github.com/orgs/YOUR_ORG/people
  2. Export json file
  3. Run this commend
ORG=<YOUR_ORG>
cat export-YOUR_ORG-123456789.json | jq -r '.[].login' | while read username; do
gh api -X DELETE "/orgs/$ORG/members/$username"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment