How do I remove version tracking from a project cloned from git?

All the data Git uses for information is stored in .git/, so removing it should work just fine. Of course, make sure that your working copy is in the exact state that you want it, because everything else will be lost. .git folder is hidden so make sure you turn on the “Show hidden files, folders and disks” option.

From there, you can run git init to create a fresh repository.

Leave a Comment