我在git存储库中并创建了一个包含一些子目录和文件的新目录。在构建之后创建了一些文件(例如module.ssysn
)。构建git之后,请让我跟踪这些文件,即使在同一个git存储库中的其他目录中也没有要求我跟踪它们。我尝试了以下方法:
我使用了git rm --cached module.ssysn
和git update-index --assume-unchanged module.ssysn
,但都失败了:
fatal: pathspec module.ssysn didn't match any files
或
fatal: unable to mark file module.ssysn
答案 0 :(得分:1)
由于消息不清楚,您的git存储库没有任何带有该名称的跟踪文件。
如果您希望存储库停止跟踪已添加的文件,则只需要这些命令。