# gh extension install

Add new gh commands from the community.

## Quick answer
```
gh extension install dlvhdr/gh-dash
```

## Syntax
```
gh extension install <repository> [flags]
```

## Examples

# Install an extension from a repo
gh extension install dlvhdr/gh-dash

# Pin to a specific release
gh extension install owner/gh-tool --pin v1.2.0

# List installed extensions
gh extension list

# Upgrade every extension
gh extension upgrade --all

# Remove an extension
gh extension remove dash

## Key flags

  --pin	Pin the extension to a specific release tag or commit.
  --force	Force installation even if the extension seems already installed.

Full guide: https://ghcli.com/gh-extension-install.php
