git remove remove code example
Example 1: remove git
rm -rf .git
Example 2: remove git remote
git remote remove origin
Example 3: how to remove remote origin git
git remote set-url origin git://new.url.here
Example 4: 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