mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-14 01:25:43 -05:00
Adds Refresh command to most custom view items
Updates custom view when repo changes (brute force for now)
This commit is contained in:
@@ -64,7 +64,11 @@ export const GitRepoSearchBy = {
|
||||
Sha: 'sha' as GitRepoSearchBy
|
||||
};
|
||||
|
||||
type RepoChangedReasons = 'stash' | 'unknown';
|
||||
export type RepoChangedReasons = 'stash' | 'unknown';
|
||||
export const RepoChangedReasons = {
|
||||
Stash: 'stash' as RepoChangedReasons,
|
||||
Unknown: 'unknown' as RepoChangedReasons
|
||||
};
|
||||
|
||||
export class GitService extends Disposable {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user