[Git]Fully delete a git repository created with init

rm -rf .git
find . -type f | grep -i "\.git" | xargs rm

Last updated