Programming Language incorrectly detected despite correct .gitattributes #7474
-
The repository's Programming Language is being displayed incorrectly on GitHub, despite having a proper
Actions taken so far:
Despite all these steps, the displayed language stats remain incorrect. This appears to be an indexing or caching issue on GitHub's side. Please investigate and update the language statistics for the repository, or advise on further steps if necessary. Repository: https://github.com/mactsouk/mGo4th |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Nope. Your
These two files (actually three but the 4.0M file is so big it's not analysed at all) are massive and are having a significant impact on the stats: $ ls -lh mGo4th/ch08/dataset/
total 43128
-rw-r--r--@ 1 lildude staff 3.9M 30 Jun 11:52 1.5M
-rw-r--r--@ 1 lildude staff 6.6M 30 Jun 11:52 2.5M
-rw-r--r--@ 1 lildude staff 11M 30 Jun 11:52 4.0M
$ You probably want to mark these files as |
Beta Was this translation helpful? Give feedback.
-
Thank you! It works now! |
Beta Was this translation helpful? Give feedback.
Nope. Your
.gitattributes
isn't considering what is actually being detected as Roff:These two files (actually three but the 4.0M file is so big it's not analysed at all) are massive and are having a significant impact on the stats:
You probably want to mark these files as
vendored
, orgenerated
, or as notd…