Git missing in VS Code – No source control providers - TagMerge
4Git missing in VS Code – No source control providersGit missing in VS Code – No source control providers

Git missing in VS Code – No source control providers

Asked 1 years ago
55
4 answers

Are you using MacOS? If you've updated Xcode lately, you may need to accept Xcode's terms of service agreement to use git.

$ sudo xcodebuild -license accept

Source: link

40

Wow I spent so long on this. For me I had to go to the Extensions area > then click the ... at top right of menu > Show built-in Extensions

Git built-in extension was disabled!!

screencapture

Source: link

37

What helped me is setting the value of git.path setting to the full path of my git.exe file. After that I was able to see the git logo:

git icon

Source: link

0

I added the git.exe path manually to the ms code user settings
{
    "git.path": "C:\\Git\\cmd\\git.exe",
    "git.enabled": true
}

Source: link

Recent Questions on git

    Programming Languages