mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-02 16:25:00 +01:00
For #299632 Not fully enabled unless you're using a recent npm. Next step will be to bump the min node/npm versions for the workspace too
Git static contributions and remote repository picker
Notice: This extension is bundled with Visual Studio Code. It can be disabled but not uninstalled.
Features
Git static contributions and remote repository picker.
API
The Git extension exposes an API, reachable by any other extension.
- Copy
src/api/git-base.d.tsto your extension's sources; - Include
git-base.d.tsin your extension's compilation. - Get a hold of the API with the following snippet:
const gitBaseExtension = vscode.extensions.getExtension<GitBaseExtension>('vscode.git-base').exports;
const git = gitBaseExtension.getAPI(1);