Code/Git

GitHub linguist-vendored 문제

Segel 2021. 4. 22. 02:06

문제:

    .gitattributes의 linguist-vendored가 서브디렉토리들에 있는 파일들을 인식하지 못함

 

해결:

    globstar(**) 사용

    ex) Etcs/Html/*.html, Etcs/External/*.html, Etcs/External/Something/*.html 에 적용
        -> .gitattributes에 추가: Etcs/**/*.html linguist-vendored

반응형