The ability to click is disabled in Visual Studio Code

I have git integration with Visual Studio Code. I can perform very well (so I believe that my credentials are configured correctly), and I can use git pushfrom the command line.

But for some reason Sync, Pulland are Pushdisabled (grayed out) in the git section. What am I missing?

Edit: I'm on Ubuntu 12.04 if that makes a difference.

+4
source share
2 answers
git branch --set-upstream-to origin/my_branch

or

git branch -u origin/my_branch
+13
source

Edit: I'm on Ubuntu 12.04 if that makes a difference.

It really does!

, , Windows, Linux, . Ubuntu apt-get repos git ( , wtf?). , , , .

, Ubuntu, , git, :

$ sudo add-apt-repository ppa:git-core/ppa
$ sudo apt-get update
$ sudo apt-get install git

VS-, git .

0

All Articles