What can cause a disabled git button in VSCode?

I can not click on Github from Visual Studio Code (version 0.5.0). I did not find an explanation of how to install it. It works fine from the console, but I would be happy to know why it does not work with VSCode.

What it looks like:

vscode screenshot

+7
git github visual-studio-code
source share
1 answer

VSCode looks to see if a branch has an uplink.

If you want to press / display the master branch on origin / master , you can run the following command and establish an uplink:

git branch -u origin/master master 

From now on, VSCode activates these actions for the main branch.

+13
source share

All Articles