vscode/extensions/git-base
Joyce Er 9fed2f7eb3
Enrich Git extension's remote source provider API (#147613)
* Allow custom title in remote source picker

* Include forks in query search results

* Support `RemoteSource.detail`

* Allow showing quickpicks in `getRemoteSources`

* Allow custom placeholder and remote source icons

* Add ability to customize placeholder

* Register and show recently opened sources

* Allow custom remote url labels

* Add a separator label for remote sources

* Update git-base typings

* Make showing recent sources opt in

* Add concept of recent remote source to `RemoteSourceProvider` concept

* Recent sources should be sorted by timestamp

* Pass current query to `getRemoteSources`

* Fix applying query
2022-04-22 07:25:06 -07:00
..
build
languages
resources/icons
src Enrich Git extension's remote source provider API (#147613) 2022-04-22 07:25:06 -07:00
syntaxes
.vscodeignore remove unecessary files in build 2022-02-18 20:38:55 +01:00
cgmanifest.json Update grammars 2021-12-07 15:12:01 +01:00
extension.webpack.config.js
package.json chore: update to electron 17 (#143223) 2022-03-11 00:51:37 +09:00
package.nls.json
README.md Add extension readme file 2021-12-02 17:07:55 +01:00
tsconfig.json
yarn.lock chore: update to electron 17 (#143223) 2022-03-11 00:51:37 +09:00

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.

  1. Copy src/api/git-base.d.ts to your extension's sources;

  2. Include git-base.d.ts in your extension's compilation.

  3. 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);