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
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?
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 asp.net-mvc git github
You are not signed in. Login or sign up in order to post.
Delete the folder
.git
at the root of the project.– Pedro Camara Junior
Thanks @Pedrocamarajunior! that’s right!
– Anderson Souza
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!
– egomesbrandao