https://github.com/mislav/gh-delete-repo
  
  
    [Deprecated] GitHub CLI extension for deleting GitHub repositories 
    https://github.com/mislav/gh-delete-repo
  
gh-extension
        Last synced: 3 months ago 
        JSON representation
    
[Deprecated] GitHub CLI extension for deleting GitHub repositories
- Host: GitHub
 - URL: https://github.com/mislav/gh-delete-repo
 - Owner: mislav
 - License: unlicense
 - Archived: true
 - Created: 2021-08-24T16:44:21.000Z (about 4 years ago)
 - Default Branch: main
 - Last Pushed: 2021-11-24T17:54:04.000Z (almost 4 years ago)
 - Last Synced: 2025-07-22T02:07:10.200Z (4 months ago)
 - Topics: gh-extension
 - Language: Shell
 - Homepage:
 - Size: 2.93 KB
 - Stars: 18
 - Watchers: 4
 - Forks: 3
 - Open Issues: 0
 - 
            Metadata Files:
            
- Readme: readme.md
 - License: LICENSE
 
 
Awesome Lists containing this project
- jimsghstars - mislav/gh-delete-repo - [Deprecated] GitHub CLI extension for deleting GitHub repositories (Shell)
 
README
          # gh delete-repo
**Deprecated: a `gh repo delete` command now ships with GitHub CLI core.**
A GitHub CLI extension to delete GitHub repositories.
Installation:
```sh
gh extension install mislav/gh-delete-repo
```
You must ensure that your GitHub CLI is authorized with the `delete_repo` scope:
```sh
gh auth refresh -h github.com -s delete_repo
```
Usage:
```sh
# delete exact repo (will be prompted for confirmation):
gh delete-repo mislav/gh-test
# delete all repos matching a pattern (will be prompted to confirm each match):
gh delete-repo 'mislav/*test'
```