Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已添加到我的.gitignore文件中:
.gitignore
dwsync.xml
但是,这不会忽略其他dwsync.xml目录中的其他文件,它只会忽略根目录。我该如何解决这个问题?
你说:
当对dwsync.xml其他文件夹进行更改时,更改会出现在“未提交的更改”中。
这意味着这些dwsync.xml文件实际上是您的存储库的一部分。在这种情况下.gitignore没有效果。中提到的文件.gitignore 仅适用于不在存储库中的文件,并且您不希望显示为“未跟踪文件”。
如果您的子目录中有 .gitignore 文件,则递归传播将不适用于该目录。您必须明确添加文件名/掩码或从子目录中删除 .gitignore。