Add prerelease options to installation docs#776
Conversation
Also fix an issue where the npm instructions got put in the middle of the curl instructions.
There was a problem hiding this comment.
Pull request overview
This PR adds prerelease installation options for each package manager and fixes the ordering issue where npm installation instructions were incorrectly placed between the curl and wget script installation commands.
- Adds prerelease installation commands for WinGet, Homebrew, and npm
- Reorganizes installation sections to properly group npm instructions together and separate them from the install script section
- Maintains consistency across all installation methods by providing both stable and prerelease options
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| ```bash | ||
| winget install GitHub.Copilot.Prerelease | ||
| ``` |
There was a problem hiding this comment.
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.
| ```bash | ||
| brew install copilot-cli@prerelease | ||
| ``` |
There was a problem hiding this comment.
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.
| ```bash | ||
| npm install -g @github/copilot@prerelease | ||
| ``` |
There was a problem hiding this comment.
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.
Also fix an issue where the npm instructions got put in the middle of the curl instructions.