Search code examples
githubopen-source

Number of repositories for GitHub Organization


How do I find the number of repos an organization has on GitHub?

If I click on each language it will tell me the number of repos with that language, but how do I get the total number of repos?


Solution

  • You can use github search from : https://github.com/search with a filter like org:my_organization (also working with user filter) :

    An example with google organization :

    enter image description here

    Note that if you want to include forked repository add fork:true :

    enter image description here