我正在GitHub上的一个存储库中,该存储库包含Java代码示例,包括HTML,CSS,Javascript,Typescript。
我希望GitHub标记/显示“ Java”作为存储库的主要编程语言,但显示为HTML。
以下内容无济于事
我尝试使用以下行将 .gitattributes 添加到我的仓库中,但没有帮助。来自博客How to Change Repo Language in GitHub
的帮助* linguist-vendored
*.java linguist-language=Java
答案 0 :(得分:0)
我能够让GitHub正确标记我的项目。
1)在根级别将一个名为.gitattributes
的新文件添加到存储库中的master分支
2)将以下行添加到文件中
*.java linguist-detectable=true
*.js linguist-detectable=false
*.html linguist-detectable=false
*.xml linguist-detectable=false
保存并刷新浏览器。您将能够看到您的Java项目已正确标记。另外,您可以添加更多类型的文件以将其忽略。
The example .gitattributes file for my Java Examples project on GitHub