removing git from a folder code example
Example 1: remove git from project
rm -rf .git*
Example 2: delete .git folder
rm -rf .git
Example 3: remove git tracking
/* Remove Git tracking from an entire folder/directory */
cd project-name // Navigate to the project directory
rm -rf .git // Remove git tracking
Example 4: how to remove git from a folder
rm -rf .git
Example 5: git remove folder from repository
# the -r option will recursively delete the folder
git rm -r folder-name
# commit changes
git commit -m "Remove duplicated directory"
Example 6: remove git from angular oproject
//Windows:
del /F /S /Q /A .git
rmdir .git