how to remove git in folder code example
Example 1: remove git from project
rm -rf .git*
Example 2: git remove folder remotely
git rm -r --cached <folder>
git commit -m "Removed Folder"
git push origin master
Example 3: git remove from folder
rm -rf .git
Example 4: delete local git repository command line creates by react
rmdir /s .git