how to remove git from local project code example
Example 1: 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 2: delete git repository command line
rm -rf .git