4

在提交 git 时要求我处理 DreamWeaver 动态文件 (*/_notes/dwsync.xml)。它们有很多,我不知道如何隐藏它们,因为它们是动态的(所以不可能将它们添加到 .gitignore 中)。有谁知道如何解决这个问题?

==================================

得到解决方案后的UPD

如果您仍然看到 dwsync.xml 出现,请清理 git cash:

git rm . -r --cached 

它应该有帮助

4

2 回答 2

6

将此添加到存储库根目录中的 .gitignore 文件中:

[_]notes/

让我知道你的情况,它对我有用。

于 2013-08-15T23:25:02.197 回答
-3

.gitignore_notes目录?

必须阅读 git-docs才能使用 git

于 2012-11-13T09:10:24.750 回答