0

每次我尝试将文件添加到 gitignore Xcode 中的资源时都会告诉我

“您的 .gitignore 文件之一将忽略以下路径: res 如果您真的想添加它们,请使用 -f。致命:未添加文件”

所以我通过从 gitignore 中删除 res 文件夹来添加我的资源,然后将文件放到 Xcode 上,最后再次将 res 文件夹添加到 gitignore 并删除任何阶段更改。

有没有更好的方法来执行此程序?

由于二进制文件太多,我将我的 res 文件夹保留在 gitignore 中,否则 git 文件夹将开始以天文数字增加其大小

4

1 回答 1

1

您可以使用以下--force标志添加它们add

git add -f res/foo
git commit -m "more resources"

(或使用通配符,例如git add -f res/*

额外提示:如果您想列出已提交的文件,即使它们与 gitignore 匹配,您也可以这样做

git ls-files -i --exclude-standard
于 2013-06-14T17:07:16.630 回答