I am trying to remove whole git repository from my local machine, but git prohibits to delete several files.
I've tried:
rm -r folder
y
.Following message appeared:
rm: cannot remove ‘.git/objects/08/fa4fcd8413b84a1605e1c4866cb2493daf4c4e’: Operation not permitted
rm: cannot remove ‘.git/objects/96/de4fe9aa42239290cae341427649f2afbdab16’: Operation not permitted
rm: cannot remove ‘.git/objects/fd/ed37600b5fe66e1a0d0e4355b387e56ca2638e’: Operation not permitted
rm: cannot remove ‘.git/objects/pack/pack-cb277ab3b4a3510209a9784a76760e6281da5218.idx’: Operation not permitted
rm: cannot remove ‘.git/objects/pack/pack-cb277ab3b4a3510209a9784a76760e6281da5218.pack’: Operation not permitted
The ls
command showed that all local files were deleted. Then I tried sudo rm -r .git
from that folder - same result.
Help me please delete that folder.
Close any git clients that might be running.
Set the permissions to delete first:
chmod -R 777 folder
Try to force the deletion:
rm -rf folder
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With