mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 01:58:53 +01:00
Git - add commit details to ref pickers (#243582)
* Refactor ref parsing * Initial implementation of getting the commit details * Show additional information in the pickers
This commit is contained in:
2
extensions/git/src/api/git.d.ts
vendored
2
extensions/git/src/api/git.d.ts
vendored
@@ -30,6 +30,7 @@ export interface Ref {
|
||||
readonly type: RefType;
|
||||
readonly name?: string;
|
||||
readonly commit?: string;
|
||||
readonly commitDetails?: Commit;
|
||||
readonly remote?: string;
|
||||
}
|
||||
|
||||
@@ -185,6 +186,7 @@ export interface RefQuery {
|
||||
readonly contains?: string;
|
||||
readonly count?: number;
|
||||
readonly pattern?: string | string[];
|
||||
readonly includeCommitDetails?: boolean;
|
||||
readonly sort?: 'alphabetically' | 'committerdate';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user