在使用git提交代码时,忘了添加.gitignore
文件,把.DS_Store
文件排除在track之外。因此会导致都被提交到了远程repo。怎么去把它删除掉呢?
$ git rm --cached *\.DS_Store
$ git commit -m "remove the .DS_Store files."
$ git push
在使用git提交代码时,忘了添加.gitignore
文件,把.DS_Store
文件排除在track之外。因此会导致都被提交到了远程repo。怎么去把它删除掉呢?
$ git rm --cached *\.DS_Store
$ git commit -m "remove the .DS_Store files."
$ git push