Added quickpick option and display of tag annotation on menu

This commit is contained in:
Xhulio Hasani
2019-08-20 16:05:46 -04:00
parent 98ed0fc2e8
commit 32d59ba806
6 changed files with 70 additions and 13 deletions

View File

@@ -37,6 +37,11 @@ export interface Branch extends Ref {
readonly behind?: number;
}
export interface Tag extends Ref {
readonly name: string;
readonly message?: string;
}
export interface Commit {
readonly hash: string;
readonly message: string;