Install the extension
Install from a GitHub Release
- Open the repository's Releases page.
- Open the release you want to install.
- Download the
.vsixfile from Assets. - In VS Code, open the Command Palette.
- Run Extensions: Install from VSIX....
- Select the downloaded file and confirm the installation.
- Reload VS Code if prompted.
Open the Command Palette and search for Git: Compose Contextual Conventional Commit to confirm that the extension is active.
Install from the command line
After downloading the release asset, run:
code --install-extension ./conventional-commits-extension-v0.1.0.vsix
Replace the filename with the asset you downloaded. Add --force when intentionally replacing an installed copy with the same version.
Install a locally built package
From a checkout of the project:
npm install
npm run package
code --install-extension ./contextual-conventional-commits-0.1.0.vsix
The package command compiles, lints, tests, and packages the extension before producing the VSIX.
Update or remove it
- To update from a VSIX, download the newer asset and repeat Extensions: Install from VSIX....
- To remove it, open Extensions, find Contextual Conventional Commits, select the gear menu, and choose Uninstall.