The command removes the file in my system. I meant it to remove only the file from Git-repository.

How can I remove the file from a Git repository, without removing the file in my system?

link|improve this question

remove it from previous commits or from the last one? – Nick Dandoulakis Aug 13 '09 at 16:36
@Nick D. The question let it open. – Masi Aug 13 '09 at 16:55
@Masi, if you want to remove it from previous commits it'll get a bit more complex - be sure to ask specifically for that if that's what you want – bdonlan Aug 13 '09 at 17:15
Thank you for your answers! – Masi Aug 13 '09 at 17:44
feedback

1 Answer

up vote 146 down vote accepted

According to "git help rm",

git rm --cached file

should do what you want.

link|improve this answer
I wish I could upvote this more, I've been wondering about this for some time. Thanks! – Chris Garrett Aug 19 '10 at 13:28
1  
I'm new to Git, but I've done this a few times and then when someone else pulls from the repository, their local file is deleted. Still searching to see if way to not delete from next developer that does a pull. – Terry Apr 27 '11 at 18:44
@Terry, see stackoverflow.com/questions/2604625/… – Jon Rodriguez Dec 3 '11 at 4:51
The confusing thing for me is that the man page for git-rm says that it doesn't remove the file(s) from your working directory. But what I see when I don't use --cached is that the file is remved. – zznq Feb 21 at 19:05
feedback

Your Answer

 
or
required, but never shown

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