forked from LengKundee/MQL5-Google-Onedrive
This commit adds documentation for the installation and setup of the following CLI tools: - Jules CLI - Cursor CLI - Firebase CLI - Docker CLI - GitHub CLI The documentation is located in the `docs` directory.
1.2 KiB
1.2 KiB
GitHub CLI Setup
Installation
The GitHub CLI (gh) is available for Windows, macOS, and Linux.
Windows
You can install the GitHub CLI on Windows using Winget.
winget install --id GitHub.cli
Alternatively, you can download the installer from the official releases page.
macOS
If you have Homebrew installed, you can use it to install the GitHub CLI.
brew install gh
Linux
For Debian/Ubuntu-based distributions:
sudo apt update
sudo apt install gh
For Fedora/CentOS/RHEL-based distributions:
sudo dnf install 'dnf-command(config-manager)'
sudo dnf config-manager --add-repo https://cli.github.com/packages/rpm/gh-cli.repo
sudo dnf install gh
For other Linux distributions, please refer to the official installation instructions.
Authentication
After installing the GitHub CLI, you need to authenticate with your GitHub account.
gh auth login
This command will guide you through the authentication process in your browser.