github热门趋势及常用搜索方法

参考:https://docs.github.com/en/github/searching-for-information-on-github/about-searching-on-github

           https://www.cnblogs.com/xiaozi/p/10687606.html

           https://blog.csdn.net/luoyayun361/article/details/88374672

0、推荐搜索  

   //查找开发者在中国,stars大于100,forks大于100,项目描述中包含thinkphp关键字的php项目
   location:china language:php stars:>100 forks:>100 thinkphp in:description

   //查找开发者在中国,stars大于100,forks大于100,项目描述中包含springmvc关键字的java项目
   location:china language:java stars:>100 forks:>100 springmvc in:description

   //查找开发者在中国,stars大于100,forks大于100,项目描述中包含mvc关键字的c#项目 
   location:china language:c# stars:>100 forks:>100 mvc in:description

   //查找开发者在中国,stars大于100,forks大于100,项目描述中包含Django关键字的python项目
   location:china language:python stars:>100 forks:>100 Django in:description

1、github热门栏目

      https://github.com/trending

      https://github.com/topics

2、常用搜索   

      2.1 查找 stars 数超过500的php项目 

           stars:>500 php

     2.2 forks 数在100~500之间的项目

           forks:100..500 php

    2.3 搜索国内的开发者,语言限定为php

          location:china language:php

   2.4   除此之外,我们还可以搜索关键字的位置。比如说,我们是按照关键字来进行搜索, 那么有些项目出现该关键字的位置不一样,有些是在标题中,有些是在 readme 中,还有在项目描述中,我们还可以指定搜索位置,如下:
搜索 “php” 关键字:

phpin:name:表示在项目名称中搜索 php 关键字
phpin:readme:表示在项目readme中搜索 php 关键字
phpin:description:表示在 项目描述中搜索 php 关键字
phpin:USERNAME:表示在USERNAME中搜索 php 关键字
phpin:ORGNAME:表示在组织或机构名中搜索 php 关键字

还可以按照项目大小来搜索:
size:>=5000 php :搜索大小超过5M 的包含 php 关键字项目


版权声明:本文为ycs_0405原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。