Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 999 Bytes

File metadata and controls

35 lines (24 loc) · 999 Bytes

StoneAge.System.Utils.DotNetCore

Prerequisites

Installing GitHub CLI

Follow the instructions below for your operating system:

Windows

winget install --id GitHub.cli

macOS

brew install gh

Linux (Debian/Ubuntu)

type -p curl >/dev/null || sudo apt install curl -y
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg 
sudo chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg
echo "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
sudo apt update
sudo apt install gh -y

For more details, visit the GitHub CLI official installation guide.