Cómo eliminar git del proyecto
rm -rf .git*
Lovely Louse
rm -rf .git*
rm -rf .git
/* Remove Git tracking from an entire folder/directory */
cd projectName // Navigate to the project directory
rm -rf .git // Remove git tracking
//Windows:
del /F /S /Q /A .git
rmdir .git
rm -rf .git*
// On windows To remove git from project
del /F /S /Q /A .git