mirror of
https://github.com/RealOrangeOne/notes.git
synced 2024-11-17 04:59:07 +00:00
17 lines
243 B
Markdown
17 lines
243 B
Markdown
|
---
|
||
|
title: Force GitHub to detect a language
|
||
|
tags:
|
||
|
- GitHub
|
||
|
---
|
||
|
|
||
|
```gitattributes
|
||
|
*.md linguist-detectable=true
|
||
|
*.sql linguist-detectable=true
|
||
|
```
|
||
|
|
||
|
To force detection as a specific language:
|
||
|
|
||
|
```gitattributes
|
||
|
*.sql linguist-language=sql
|
||
|
```
|