how to remove git repository from a project code example
Example 1: remove git from project
rm -rf .git*
Example 2: how to remove git repository from a project
rm -rf .git
Example 3: remove git from angular oproject
//Windows:
del /F /S /Q /A .git
rmdir .git