我已经在我的机器上设置了一个本地 git。当我初始化 git 时,我添加了预编译的库和二进制文件。但是,现在在我的开发过程中,我不想间歇性地签入这些文件。我不想从 repo 中删除这些文件。在我完成开发之前,有什么方法可以不跟踪这些文件。(我想我不能使用 .gitignore 因为它只适用于那些不在 git 中的文件。我想暂时禁用文件跟踪。)
git update-index应该做你想做的
这将告诉 git 你要开始忽略对文件的更改 git update-index --assume-unchanged path/to/file
git update-index --assume-unchanged path/to/file
当您想再次开始跟踪时 git update-index --no-assume-unchanged path/to/file
git update-index --no-assume-unchanged path/to/file
Github 文档:更新索引