Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add prerelease options to installation docs
Also fix an issue where the npm instructions got put in the middle of
the curl instructions.
  • Loading branch information
devm33 committed Dec 13, 2025
commit 0462850bdf2cc8c5523d85c943227f75b9ce344b
24 changes: 18 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,28 +45,40 @@ Install with [WinGet](https://github.com/microsoft/winget-cli) (Windows):
winget install GitHub.Copilot
```

```bash
winget install GitHub.Copilot.Prerelease
```
Comment on lines +48 to +50
Copy link

Copilot AI Dec 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The prerelease installation commands are added without any explanatory text. Each prerelease option should include a brief description (e.g., "To install the prerelease version:") to provide context for users and improve readability of the documentation.

Copilot uses AI. Check for mistakes.

Install with [Homebrew](https://formulae.brew.sh/cask/copilot-cli) (macOS and Linux):

```bash
brew install copilot-cli
```

Install with the install script (macOS and Linux):
```bash
brew install copilot-cli@prerelease
```
Comment on lines +58 to +60
Copy link

Copilot AI Dec 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The prerelease installation command is added without any explanatory text. Each prerelease option should include a brief description (e.g., "To install the prerelease version:") to provide context for users and improve readability of the documentation.

Copilot uses AI. Check for mistakes.

Install with [npm](https://www.npmjs.com/package/@github/copilot) (macOS, Linux, and Windows):

```bash
curl -fsSL https://gh.io/copilot-install | bash
npm install -g @github/copilot
```

Or
```bash
npm install -g @github/copilot@prerelease
```
Comment on lines +68 to +70
Copy link

Copilot AI Dec 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The prerelease installation command is added without any explanatory text. Each prerelease option should include a brief description (e.g., "To install the prerelease version:") to provide context for users and improve readability of the documentation.

Copilot uses AI. Check for mistakes.

Install with the install script (macOS and Linux):

```bash
wget -qO- https://gh.io/copilot-install | bash
curl -fsSL https://gh.io/copilot-install | bash
```

Install with [npm](https://www.npmjs.com/package/@github/copilot) (macOS, Linux, and Windows):
Or

```bash
npm install -g @github/copilot
wget -qO- https://gh.io/copilot-install | bash
```

Use `| sudo bash` to run as root and install to `/usr/local/bin`.
Expand Down