GitHub advanced search mode

Usually after completing a knowledge need to write some demo to practice hand, but this is the best time GitHub repository, and the following compiled some tips on looking for some small projects on github above.

A single use conditions

  1. project name

    Warehouse project name contains spring

    in:name spring

  2. project description

    Warehouse project description contained in spring

    in:description spring

  3. readme file

    Description readme contains spring projects

    in:readme spring

  4. The number of star

    Project 1000 is greater than the number of star

    starts: >1000

    Number star 10-20 project directly

    stars:10..20

  5. Number fork

    Project 1000 is greater than the number of fork

    fork:>1000

    Item Quantity fork between 10 to 20

  6. Warehouse Size

    Search by warehouse size, unit: KB, warehouse project 1000kB of greater than

    size:>=1000

  7. Last updated

    Most recently in 2019 after submitting warehouse

    pushed:> 2019-01-01 Keywords

  8. Created warehouse

    Created after the 2019 warehouse

    created:> 2019-01-01 Keywords

  9. license

    Use apache-2.0 protocol warehouse

    license: apache-2.0 Keywords

  10. Development language used in warehouse

    Using java language to write warehouse

    language: java Keywords

  11. Author warehouse

    Google users to upload warehouse

    user: google keyword

  12. Organization of warehouse

    Org list of spring-cloud warehouse

    org:spring-cloud

Second, the use of a combination of conditions

1. Search name contains spring boot, and star in more than 1,000 projects.

in:name spring boot stars:>1000

2. Search the description contained spring boot, and the star than in 1000, language is the java program.

in:description spring boot stars:>1000 language:java

3. Search readme contains the keyword [] test automation framework and star above 100, language is python project.

in: readme test automation frameworks stars:> 100 language: python

Guess you like

Origin www.cnblogs.com/tester-ggf/p/11897697.html