git 递归删除指定目录下的某个同名文件

2015-06-02

在使用git提交代码时,忘了添加.gitignore文件,把.DS_Store文件排除在track之外。因此会导致都被提交到了远程repo。怎么去把它删除掉呢?

$ git rm --cached *\.DS_Store
$ git commit -m "remove the .DS_Store files."
$ git push 
Comments
Write a Comment