remove git from project in windows code example
Example 1: remove git from project
rm -rf .git*
Example 2: remove git from project in windows
// On windows
del /F /S /Q /A .git
rm -rf .git*
// On windows
del /F /S /Q /A .git