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

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
2  
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
See my answer below for heads up on deleting the file from local file system ... – Chris K May 25 at 20:10

4 Answers

up vote 121 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
3  
Then use "git push origin branch_name" – a fair player Apr 15 at 15:36
2  
@afairplayer That only applies if he's using a remote repo, but he didn't say he was. – Juampi May 29 at 10:10

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

git rm file.txt removes the file from the repo but also deletes it from the local file system.

To remove the file from the repo and NOT delete it from the local file system use: git rm --cached file.txt

Sample output from what just happened to me below, where I unintentionally deleted the .003 file. Thankfully, I don't care what happened to the local copy, but some of the other currently changed files would be epic to have been deleted on the file system.

[~/www]$ git rm shop/mickey/mtt_flange_SCN.7z.003
error: 'shop/mickey/mtt_flange_SCN.7z.003' has local modifications
(use --cached to keep the file, or -f to force removal)
[~/www]$ git rm -f shop/mickey/mtt_flange_SCN.7z.003
rm 'shop/mickey/mtt_flange_SCN.7z.003'
[~/www]$ 
[~/www]$ git status
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#   deleted:    shop/mickey/mtt_flange_SCN.7z.003
#
# Changed but not updated:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#   modified:   shop/mickey/mtt_flange_SCN.7z.001
#   modified:   shop/mickey/mtt_flange_SCN.7z.002
[~/www]$ ls shop/mickey/mtt_flange_S*
shop/mickey/mtt_flange_SCN.7z.001  shop/mickey/mtt_flange_SCN.7z.002
[~/www]$ 
[~/www]$ 
[~/www]$ git rm --cached shop/mickey/mtt_flange_SCN.7z.002
rm 'shop/mickey/mtt_flange_SCN.7z.002'
[~/www]$ ls shop/mickey/mtt_flange_S*
shop/mickey/mtt_flange_SCN.7z.001  shop/mickey/mtt_flange_SCN.7z.002
[~/www]$ 
[~/www]$ 
[~/www]$ git status
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#   deleted:    shop/mickey/mtt_flange_SCN.7z.002
#   deleted:    shop/mickey/mtt_flange_SCN.7z.003
#
# Changed but not updated:
#   modified:   shop/mickey/mtt_flange_SCN.7z.001
[~/www]$
share|improve this answer

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.