I am trying to delete a folder that has sub folders, and a git repository.

Doing:

rm -R folder_name/

doesn't work, it prompts me for some folders that are GIT specific?

link|improve this question

48% accept rate
@user27449: if Ignacio's answer solves your issue, please mark it as the answer, for the reference of those looking to assist. – Zayne S Halsall Nov 20 '10 at 10:01
feedback

1 Answer

up vote 7 down vote accepted

It's working fine, it's just asking you if you're certain you want to delete files and folders you normally wouldn't be able to. Add -f if you want to force deletion of anything it comes across.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.