Skip to content

Commit 6111294

Browse files
authored
Git - do not show checkout commands when searching (microsoft#202567)
1 parent 70869b7 commit 6111294

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/git/src/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { RemoteSourceAction } from './api/git-base';
2323
abstract class CheckoutCommandItem implements QuickPickItem {
2424
abstract get label(): string;
2525
get description(): string { return ''; }
26-
get alwaysShow(): boolean { return true; }
26+
get alwaysShow(): boolean { return false; }
2727
}
2828

2929
class CreateBranchItem extends CheckoutCommandItem {

0 commit comments

Comments
 (0)