I need to start a Visual Studio project over but establish it with a different remote. I looked this up here on Stack Overflow and came across this post "Visual Studio move project to a different folder". That almost helps, but I need a little more help.
The project is in Git with the remote in Azure DevOps Services. I need to start it over but not have it tied to the same Git remote repo in Azure DevOps. Instead, I've got to establish a new remote in Azure DevOps for the project, from the new location on my local machine. I am assuming that I can use the answers to the post I've linked to.
Do I also not copy the .git folder from the old location, then from the new location perform a git init
to establish a new local git repo and establish a different git upstream in Azure DevOps? (At this point I am not concerned with keeping the history of changes to the project in the old location. This is a fresh start.)