Git - display ahead/behind information in the checkout picker (#244003)

* Initial implementation

* Handle scenario where the git version does not support ahead/behind
This commit is contained in:
Ladislau Szomoru
2025-03-19 16:04:58 +01:00
committed by GitHub
parent 6900113cf9
commit 2365ea12ec
4 changed files with 43 additions and 17 deletions

View File

@@ -30,6 +30,7 @@ export interface Ref {
readonly type: RefType;
readonly name?: string;
readonly commit?: string;
readonly commitDetails?: Commit;
readonly remote?: string;
}