gh-extension: add list and remove examples (#6579)

beep
Axel Navarro 2021-09-29 12:01:24 -03:00 committed by GitHub
parent 2ef0f6f73c
commit 43f7696ba3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 2 deletions

View File

@ -5,7 +5,7 @@
- Initialize a new GitHub CLI extension project in a directory of the same name:
`gh extension create {{name}}`
`gh extension create {{extension_name}}`
- Install an extension from a GitHub repository:
@ -17,8 +17,20 @@
- Upgrade a specific extension:
`gh extension upgrade {{name}}`
`gh extension upgrade {{extension_name}}`
- Upgrade all extensions:
`gh extension upgrade --all`
- List installed extensions:
`gh extension list`
- Remove an extension:
`gh extension remove {{extension_name}}`
- Display help about a subcommand:
`gh extension {{subcommand}} --help`