GitHub | How to efficiently search GitHub projects

Today, I learned a new GitHub search posture while visiting Station B. Here I will introduce and record it. You can quickly locate the relevant content you want to query.

First look at the page information of the GitHub repository.
insert image description here

  • in:name spring boot
    Query the warehouse that contains spring boot in the name

  • in:readme spring boot
    query the warehouse containing spring boot in the readme

  • in:description spring boot
    query description contains spring boot warehouse

  • stars:>3000
    query warehouses with stars greater than 3000

  • forks:>3000
    query warehouses with more than 3000 forks

  • language:java
    query development language is the warehouse of java

  • pushed:>2019-9-30
    Query the warehouse whose last push date is after 2019-9-30

示例:
in:readme spring boot stars:>3000 forks:>28000 language:java pushed:>2019-9-30

Explanation:
Query readme that contains spring boot, and the number of stars is greater than 3000, the number of forks is greater than 28000, the language is java, and the warehouse with the last update date of 2019-9-30

Guess you like

Origin blog.csdn.net/u012294515/article/details/104087258