从git仓库中删除误提交的文件

Tell Git not to track a file any more (remove from repo)

Git rm FAQ: How do I tell Git not to track a file (or files) any more? That is, I want to remove the file from the Git repo?

While working on an application named "sarah" yesterday (named for the house known as "SARAH" in the tv series Eureka), I accidentally checked some files into Git that I didn't mean to. These were were primarily binary files in my project's "bin" and "target" directories.

Because I didn't want these files in my Git repository, I needed a way to remove them from the repository, but still keep them on disk. Fortunately there's a Git command for just this situation:

git rm --cached [filenames]

For example, here's how I removed all the files I wanted to delete from one of my "bin" subdirectories:

git rm --cached bin/com/devdaily/sarah/\*

I use the unusual  "\*" syntax at the end of that command instead of "*" because you need to escape the "*" from the git command. In a simpler example, if there was just one file in the bin directory named Foo.class that I wanted to remove from the Git repository, I would use this command:

git rm --cached bin/Foo.class

I should be clear that what this command means is:

You want to keep these files on your hard drive, but you don't want Git to track them any more.

(I got this quote directly from page 25 of the excellent book, Pro Git.)

More Git remove (don't track) examples

If it helps to see some more examples, here's a list of all the "git rm --cached" commands I ended up running:

git rm --cached src/main/resources/\*
git rm --cached target/scala-2.9.1/classes/\*
git rm --cached target/streams/\$global/compilers/\$global/out

After running a few more git rm commands, I learned that I could have just run the following git command to remove all files in the target directory from the git repository:

git rm --cached target/\*

Followup: I just read that this command may still keep the files in the history, and completely removing them is a more difficult problem. However, I'm not very concerned about that, in my case I just want Git to stop tracking those files, so this solution works fine for me.

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值