Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|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

1 Answer

up vote 257 down vote accepted

According to "git help rm",

git rm --cached file

should do what you want.

share|improve this answer
1  
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/… – EvolvedAI Dec 3 '11 at 4:51
5  
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 '12 at 19:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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