Elye
Elye

Reputation: 60081

Command line to get what programming language are used in a github repository

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

Answers (1)

GoodDeeds
GoodDeeds

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

Related Questions