Remove Git binding in ASP.NET MVC Project

1

I started an ASP.NET MVC project and initially I used git for code control, but now I want to transfer to Team Foundation Services, how do I unlink my git project?

    
asked by anonymous 20.05.2016 / 16:12

1 answer

2

As already mentioned, @ pedro-camara-junior, delete the folder .git that is in the root of your repository. The folder is hidden, so be sure to enable the option to view hidden files and folders.

All git information is saved in this folder. Obviously, confirm that your current project copy is the one you want to keep, because everything else will be lost.

    
20.05.2016 / 16:25