With more than 30 ansers here, I'll keep it simple with what works for me
Deleting the .git folder may cause problems in your git repository. If you want to delete all your commit history but keep the code in its current state, it is very safe to do it as in the following:
Checkout
git checkout --orphan latest_branchAdd all the files
git add -ACommit the changes
git commit -m "commit message"Delete the branch
git branch -D masterRename the current branch to master
git branch -m masterFinally, force update your repository
git push -f origin masterPS: this will not keep your old commit history around.