1

I need to change my source control target from one server to another, and need to remove source control (and all history if possible) from my project.

What is the correct way to do this? I tried the Source Control.. Remove command on both the project and solution, restarted, and inspected for hidden .Git files that could be present. The system still behaves as if source control is still enabled.

What other things should I try when removing this from Source Control?

Stephen Kennedy
  • 20,585
  • 22
  • 95
  • 108
TLDR
  • 1,198
  • 1
  • 12
  • 31

1 Answers1

0

rm -rf .git should do it. Or just delete .git/ hidden folder manually. Here is a link to a similar question.

Roman Svitukha
  • 1,302
  • 1
  • 12
  • 22