Reputation: 60081
We could get to know what language a github repo consist of as per shown in Stackexchange.
However, is there a way to get this information in command line?
Upvotes: 3
Views: 1237
Reputation: 8507
Yes. GitHub uses the Linguist library to determine repository languages. You can install and run linguist locally from the command line.
In your repository, run:
github-linguist --breakdown
Further details and help can be found here.
Upvotes: 5