git remove git code example
Example 1: remove git from project
rm -rf .git*
Example 2: delete .git folder
rm -rf .git
Example 3: remove git
rm -rf .git
Example 4: 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 5: remove git from angular oproject
//Windows:
del /F /S /Q /A .git
rmdir .git
Example 6: remove git
rm -rf .git
-r => Remove directories and there contents recursively.
-f => Ignore nonexistent files and arguments, never prompt
for more info run
rm --help