user956609
user956609

Reputation: 1311

How to open git branch select in vscode by keyboard?

enter image description here

In VSCode, there a git branch select option in the left-bottom, Is there any way to activate this by keyboard rather than click by a mouse?

Upvotes: 0

Views: 544

Answers (1)

Mark
Mark

Reputation: 182441

Look at the

Git: Checkout to... command.

It is unbound by default. For example:

{
  "key": "alt+c",
  "command": "git.checkout"
}

Upvotes: 1

Related Questions