2 min to read
What is GitHub CLI and How to use?
You can now access your GitHub through your Command Line
GitHub CLI brings GitHub to your terminal. It reduces context switching, helps you focus, and enables you to more easily script and create your own workflows. Earlier this year, GitHub announced the beta of GitHub CLI. Since it released the beta, users have created over 250,000 pull requests, performed over 350,000 merges, and created over 20,000 issues with GitHub CLI. And finally, GitHub CLI is out of beta and available to download on Windows, macOS, and Linux.
Take a breif look at all the GitHub CLI Commands here
With GitHub CLI 1.0, you can:
- Run your entire GitHub workflow from the terminal, from issues through releases
- Call the GitHub API to script nearly any action, and set a custom alias for any command
- Connect to GitHub Enterprise Server in addition to GitHub.com
From issue to release:
Use GitHub CLI for your entire GitHub workflow.
- Clone the repository you want to work with using
gh repo clone owner/repo
. - Find the next thing you need to work on with
gh issue status
orgh issue list --assignee billygriffin
.
- When you’ve finished adding that feature or fixing that bug, use
gh pr create
to create your pull request on GitHub.
- And your teammate can check out your pull request using
gh pr checkout 1337
, view the diff withgh pr diff
, and even provide a lightweight review usinggh pr review
.
- After the pull request is approved, you can make sure all your tests are passing with
gh pr checks
, and then go ahead and merge it right from your terminal withgh pr merge
. GitHub CLI will even offer to delete your branch locally and on GitHub.com after the merge.
- And when you’re ready to cut your next release, just use
gh release create [tag name]
and make your creation available to the world without ever leaving your command line!
Make GitHub CLI your own with aliases and gh api
GitHub CLI now allows you to create aliases for any command using gh alias set
. And with the powerful gh api
allowing you to access the GitHub API directly, there’s no limit to what you can do with gh
. Commands are also easily composable.
GitHub CLI is available for GitHub Enterprise Server
Finally, you can use GitHub CLI with repositories hosted on GitHub Enterprise Server 2.20+. This has been the most frequent request since we announced the beta, and we’re excited that more and more people using GHES will be able to also use GitHub CLI.