up vote 0 down vote favorite
share [g+] share [fb]

I tried to remove my Git-files:

rm -R .git | yes

My CPU becomes loud, and no file is removed. I cannot understand what is going on. How can I remove my .git-files?

link|improve this question

retagged: it is not about git, but about commandline (bug) – Jakub NarÄ™bski May 26 '09 at 11:13
feedback

3 Answers

up vote 4 down vote accepted

Try

yes | rm -r .git

You were passing the output of rm to yes (flow is left->right), but as yes does not read stdin, rm was just left hanging there.

Also, you do not really need yes anyway. As the only questions you seriously want to answer with 'yes' in an automated fashion are whether to delete read-only files, you can use the -f parameter ('force'):

rm -rf .git
link|improve this answer
1  
Ah yes brilliant bug fix heh... – TokenMacGuy May 24 '09 at 17:22
feedback

.git is likely to have a lot of files under it. Try using

$ rm -Rvf .git

that way it will show you what files are being deleted.

link|improve this answer
feedback

It looks like you're trying to deal with rm asking for confirmation before each deletion by piping the output of yes, which produces and infinite number of "y" characters into rm, but you're doing it wrong.

rm -Rf .git      # the -f option is "force", i.e. don't ask for confirmation.

If you want to pipe the output of one command into another, the source has to come first, before the pipe:

yes | head
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.