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
From root folder run
find . | grep .git
Review the matches and confirm it only contains those files you want to delete and adjust to suit. Once satisfied, run
find . | grep .git | xargs rm -rf