Reputation: 1311
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
Reputation: 182441
Look at the
Git: Checkout to...
command.
It is unbound by default. For example:
{
"key": "alt+c",
"command": "git.checkout"
}
Upvotes: 1