GitHub cli on Ubuntu
Installing GitHub CLI (gh) on Ubuntu 24.04
The GitHub CLI (gh
) is a powerful command-line tool that allows you to interact with GitHub directly from your terminal. Here’s how to install it on your Ubuntu 24.04 system:
Method 1: Install from APT Repository (Recommended)
GitHub provides an official APT repository for Ubuntu. This is the recommended method as it will ensure you get the latest version and automatic updates.
# 1. Install dependenciessudo apt updatesudo apt install curl
# 2. Add the GitHub CLI repository GPG keycurl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg
# 3. Add the GitHub CLI repositoryecho "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null
# 4. Update package lists and install ghsudo apt updatesudo apt install gh
Method 2: Install via Snap
If you prefer using snap packages, you can install GitHub CLI this way:
sudo snap install gh
Authenticate with GitHub
After installation, you need to authenticate with your GitHub account:
gh auth login
Follow the interactive prompts:
- Select GitHub.com (not enterprise)
- Choose your preferred protocol (HTTPS or SSH)
- Choose how you want to authenticate (browser or token)
Verify Installation
Verify that the CLI was installed correctly:
gh --version
Basic Usage Examples
Here are some common commands to get started:
# Clone a repositorygh repo clone username/repository
# Create a new repositorygh repo create my-project
# Create a new issuegh issue create
# Create a pull requestgh pr create
# View repository statusgh repo view
# List your pull requestsgh pr list
Configure CLI Settings (Optional)
You can set various configuration options:
# Set editorgh config set editor vim
# Set browsergh config set browser firefox
# Display all configuration settingsgh config list
Now you have GitHub CLI installed and configured on your Ubuntu 24.04 system!