Aditya Bokade
Aditya Bokade

Reputation: 1786

Unbind project from source control in visual studio 2015

By mistake I added my project to GIT repository. Now I would like to change the repository to TFS.

On many websites its mentioned first to select the solution, then go to File menu> Source Control> Change Source Control.

However, I am unable to see this option. Where am I going wrong?

Upvotes: 7

Views: 2897

Answers (1)

Cece Dong - MSFT
Cece Dong - MSFT

Reputation: 31075

You did nothing wrong. Source Control option is not available for Git repository.

Close VS, go to the solution folder of your GIT repository, and remove the hidden .git folder, as well as the .gitattributes and .gitignore files.

Upvotes: 8

Related Questions