Created
January 27, 2021 22:05
-
-
Save cwiederspan/5c9d18de9fdff0598d75d389331e78bc to your computer and use it in GitHub Desktop.
Setup and use GitHub CLI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install the GitHub CLI | |
| sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-key C99B11DEB97541F0 | |
| sudo apt-add-repository https://cli.github.com/packages | |
| sudo apt update | |
| sudo apt install gh | |
| # Log into GitHub | |
| gh auth login | |
| # Create a repo from a template | |
| gh repo create ateamsw/learn-wordpress-on-azure --template ateamsw/devcontainer-template --public |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment