git remove command code example
Example 1: remove git
rm -rf .git
Example 2: how to remove stuff from git
git rm -r File-Name
Example 3: 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
Example 4: remove git deleted files
git commit -m "Deleted files manually"