Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have added a file named "file1.txt" to git repo. After that I committed it, added a couple directories called dir1 and dir2, and committed them to git repo.
Now the current repo has "file1.txt", dir1 and dir2. How can I delete "file1.txt" without affecting others like dir1 and dir2?

share|improve this question
1  
git rm is the right answer, but remember that the file will still be there in history. If you want to remove a file because it had sensitive information, you'll need to do something more drastic. (Changing history, especially for content you've already pushed, is a drastic action, and should be avoided if possible.) – Keith Thompson May 16 at 21:06

3 Answers

up vote 95 down vote accepted

Use git rm:

git rm file1.txt
git commit -m "remove file1.txt"
share|improve this answer
Thanks Greg!! It's worked fine. – lakshmipathi Jan 12 '10 at 8:00
Then use "git push origin branch_name" – a fair player Apr 15 at 15:36

More generally, git help will help with at least simple questions like this:

zhasper@berens:/media/Kindle/documents$ git help
usage: git [--version] [--exec-path[=GIT_EXEC_PATH]] [--html-path] [-p|--paginate|--no-pager] [--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE] [--help] COMMAND [ARGS]

The most commonly used git commands are:
   add        Add file contents to the index
   :
   rm         Remove files from the working tree and from the index
share|improve this answer
2  
james...instead of checking --help , I googled about it and found things like filter- or creating temporary braches etc etc and got confused. :) . – lakshmipathi Jan 12 '10 at 9:13
3  
For more complex things, I find git help confusing, but it's good for the simple things :) – James Polley Jan 12 '10 at 10:43
1  
It's not actually that great for git noobs because "index" is not a concept git noobs are familiar with. I speak from personal experience of being a git noob :) Also, I feel it's much less confusing to say that rm stages a file for deletion rather than removes from the index (though it's still meaningless for noobs). – romkyns Apr 4 at 11:51

If you have the GitHub for Windows application, you can delete a file in 5 easy steps:

  • Click Sync.
  • Click on the directory where the file is located and select your latest version of the file.
  • Click on tools and select "Open a shell here."
  • In the shell, type: "rm {filename}" and hit enter.
  • Commit the change and resync.
share|improve this answer

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.