Source control is not available for database access

The associated source control plug-in is not installed or could not be initialized. Common causes for this error include server unavailability and/or incorrect workspace mappings. O Temporarily work uncontrolled o Permanentnly remove source control association bindings 

Dear friends,

I installed git as well as the git extension I used the clone repository correctly. The git system works fine on my system, but I get this error

What is the problem? Mapping? How to solve it ...: (

+4
source share
3 answers

OP reports that installing the git plugin for Visual Studio (should be Visual Studio Tools for git "), the error message has disappeared.

0
source

A common permission often is to clear the local cache by following these steps:

Delete contents from the following folders

C: \ Users \ <> \ AppData \ Local \ Microsoft \ Team Foundation

C: \ Users \ <> \ AppData \ Local \ Microsoft \ VisualStudio

C: \ Users \ <> \ AppData \ Local \ Microsoft \ VSCommon

Go to the Visual Studio IDE folder on the command line and run the following "devenv / resetuserdata" command from the Visual Studio IDE folder.

Typical location for 64 bits:

C: \ Program Files (x86) \ Microsoft Visual Studio 10.0 \ Common7 \ IDE

Typical location for 32 bits:

C: \ Program Files \ Microsoft Visual Studio 10.0 \ Common7 \ IDE

Before you follow the above step, close all instances of your visual studio.

0
source

The file should have a Global section, which contains all the settings for this. find GlobalSection (TeamFoundationVersionControl) and delete this entire section until EndGlobalSection.

Once you do, reload the solution and tell it to return to the Internet, and your bindings should work again.

0
source

All Articles