

30·
10 months agoYou just need to do this then
cd git-project
rm -rf .git
cd ..
rm -r git-project
With rm
-r is for ®ecursion and -f is for F(force) disabled the prompting. So, use -f on the .git directory which has the files you want to obliterate, and leave it off for the safety prompts.
My man just reinvented free software.