Code/Git

GitHub 리포지토리의 언어 통계 변경

Segel 2021. 2. 25. 20:32

C# 프로젝트에서 언어 통계가 아래처럼 나오는 것을 발견했다.

 

github - Using gitattributes for linguist examples - Stack Overflow

 

Using gitattributes for linguist examples

Are there any concrete examples, in order to detect wrong languages in GitHub via Linguist attributes? Source: https://github.com/github/linguist linguist-documentation linguist-language lingu...

stackoverflow.com

.gitattributes 파일을 수정함으로써 통계에 원하지 않는 파일들이 잡히는 것을 막을 수 있다.

예시)

*.html linguist-vendored
source_*.js linguist-vendored
#파일명에 와일드카드 삽입 가능

Htmls/* linguist-vendored
#디렉터리 전체 선택 가능

 

제대로 변경되었다.

 

추가) GitHub linguist-vendored 문제 (tistory.com)

반응형