git remove .git folder code example
Example 1: remove git from project
rm -rf .git*
Example 2: delete .git folder
rm -rf .git
Example 3: remove git from angular oproject
//Windows:
del /F /S /Q /A .git
rmdir .git
Example 4: git remove from folder
rm -rf .git