[note] Installing GitHub Copilot CLI and Usage Guide
๐ Introduction
This article discusses how to install and use the GitHub Copilot CLI. It covers the installation process using npm, setting execution policies on Windows, and gives an example of how to use the CLI to get help on certain git commands.
๐ Quick Start
- Install GitHub Copilot CLI:
1
npm install -g @githubnext/github-copilot-cli
- Set execution policy for PowerShell:
1
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
- Authenticate with GitHub Copilot CLI:
1
github-copilot-cli auth
- Test the CLI:Output:
1
github-copilot-cli what-the-shell how to delete branch
โโโโโโโโโโโโโโโโโโโโ Command โโโโโโโโโโโโโโโโโโโโ
git branch -d
โโโโโโโโโโโโโโโโโโ Explanation โโโโโโโโโโโโโโโโโโ
โ git branch is used to list branches.
โ -d
โ
Run this command
๐ Revise query
โ Cancel
๐ Recap
- GitHub Copilot CLI can be installed easily via npm.
- Windows users need to set the execution policy to allow running scripts.
- The CLI provides assistance with git commands and outputs the command along with an explanation.
[note] Installing GitHub Copilot CLI and Usage Guide
https://hsiangjenli.github.io/blog/note_installation_of_github_cli/