2019-11-03 【git】暴力清理工程

2019-11-03  本文已影响0人  持刀的要迟到了

https://stackoverflow.com/questions/15931238/unable-to-remove-file-that-really-exists-fatal-pathspec-did-not-match-any

https://stackoverflow.com/questions/38880436/git-remove-all-of-a-certain-type-of-file-from-the-repository

工程里有很多乱七八糟的后缀名文件,如meta文件,这些文件有的被提交过(绿色对号)有的是没添加到提交清单(蓝色问号)。
若处于蓝色问号状态,不能清理。

0.修改.gitignore文件,加入*.meta


image.png

1.git add . 将所有未添加目录添加到工程


image.png

2.git rm -r --cached */.meta 删除未上传的,从上一步的蓝色问号变成红色叹号的文件

image.png

3.此时若工程还有.meta文件,使用.bat文件批量删除(见上篇文章)

4.提交

上一篇 下一篇

猜你喜欢

热点阅读