Git - add more git sub-commands that would result in refreshing the SCM viewlet (#224185)

This commit is contained in:
Ladislau Szomoru 2024-07-29 15:58:00 +02:00 committed by GitHub
parent f54dbdeaf1
commit 887cdf05ee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -54,8 +54,8 @@ export class TerminalEnvironmentManager {
export class TerminalShellExecutionManager {
private readonly subcommands = new Set<string>([
'add', 'branch', 'checkout', 'clean', 'commit',
'fetch', 'reset', 'revert', 'pull', 'push', 'switch']);
'add', 'branch', 'checkout', 'cherry-pick', 'clean', 'commit', 'fetch', 'merge',
'mv', 'rebase', 'reset', 'restore', 'revert', 'rm', 'pull', 'push', 'stash', 'switch']);
private readonly disposables: IDisposable[] = [];