how to delete git tracking 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 from git tracking
git rm --cached <file>
Example 4: remove from git tracking
git rm -r --cached <folder>