I want to remove all version tracking from a project\'s directory.
What is the correct method to do this?
Can I do a shell command such as:
r
You can also remove all the git related stuff using one command. The .gitignore file will also be deleted with this one.
rm -rf .git*