代码之家  ›  专栏  ›  技术社区  ›  yuppo

git属性中忽略了负面模式

  •  -1
  • yuppo  · 技术社区  · 7 年前

    当我克隆远程url时,会发生这种情况,我该如何修复它,请帮助

    enter image description here

    2 回复  |  直到 7 年前
        1
  •  1
  •   zigarn    7 年前

    Negative patterns are ignored in git attributes .

    gitattributes doc 说:

    不像 .gitignore

    因此,解决方法之一是:

    • 更改 .gitattributes 内容不要尝试使用负面模式
        2
  •  0
  •   axiac    7 年前

    Git在消息中解释了如何修复该问题。这并不能很清楚地说明问题出在哪里,但从消息中我想你的 .gitattributes 包含以开头的行 ! .

    文件 .gitattributes

    模式如何匹配路径的规则与中的相同 .gitignore 文件夹;看见 gitignore .gitignore

    如果您有一个名称以开头的文件 ! 然后使用 \! .

    否则,请拆下 ! , .gitignore