Remove Git Binding in the ASP.NET MVC Project

Asked

Viewed 1,164 times

1

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

  • 1

    Delete the folder .git at the root of the project.

  • Thanks @Pedrocamarajunior! that’s right!

  • If you did it in Git and you want to put it in TFS... you can use Git in TFS! Or logically TFVC... but I’d take the first!

1 answer

3


As @pedro-camara-junior already commented, just delete the folder .git which is at the root of your repository. The folder is hidden, so be sure to enable the option to view Hidden Files and Folders.

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

Browser other questions tagged

You are not signed in. Login or sign up in order to post.