To uninitialize a git repository, you simply need to remove the folder named ".git" in your repository folder. For example, by manually dragging/deleting the folder or by using the remove command in terminal like so:
rm -rf .git
The r
flag means, remove recursively and the f
flag means force (to force-remove protected files).
Before removing the ".git" folder, please ensure that you're in the correct repository, because removing it means you will lose all of your repository's history.
Hope you found this post useful. It was published (and was last revised ). Please show your love and support by sharing this post.