1

我目前正在学习 OpenGL 并将我的程序上传到 GitHub。但是,由于依赖项包含在语言统计信息中,因此统计信息被大量夸大了。

我试图编写一个.gitattributes文件来对此进行排序,但是我无法让它工作。我在这里浏览了 github-linguistics 文档和几个问题,但没有发现任何有用的东西。我已经使用了该git check-attr命令,并且没有为文件分配属性。

下面的代码是.gitattributes文件中的内容,如果有帮助,我还将包含一个指向存储库本身的链接。

OpenGl[[:space]]Tutorial[[:space]]Project/Dependencies/** linguist-vendored
OpenGl[[:space]]Tutorial[[:space]]Project/glad.c linguist-vendored

https://github.com/HDonovan96/Programming

我期望发生的是“glad.c”文件和“Dependencies”中的每个文件都将从语言统计信息中排除,但它们仍然全部包含在内。

4

1 回答 1

0

:[[:space:]]. 试试这个:

OpenGl[[:space:]]Tutorial[[:space:]]Project/Dependencies/** linguist-vendored
OpenGl[[:space:]]Tutorial[[:space:]]Project/glad.c linguist-vendored
于 2019-06-03T12:10:09.767 回答