在github上快速找到参考项目的快捷技巧

github是一个大宝库,经常在github上面查找需要的资料,无论是找开源书籍,还是找需要参考的项目demo,如果学习了以下的技巧,那么事半功倍。话不多说,上才艺。 首先登陆github,然后以下操作都是在搜索框中进行。以搜索 “springdemo” 为例:

  1. in:name springdemo 以项目名中包含“springdemo”来搜索
  2. in:readme springdemo 以readme 中包含 "springdemo"来搜索
  3. in:description springdemo 以description中包涵"springdemo"来搜索
  4. in:name springdemo stars>100 以项目名中包含“springdemo”来搜索,并且star数大于100
  5. in:name springdemo forks>100 以项目名中包含“springdemo”来搜索,并且forks数大于100
  6. in:name springdemo language:java 以项目名中包含“springdemo”来搜索,并且编程语言是java
    以上就是在一般搜索的基础上加了一些条件,能够在指定的位置匹配查询到数据,比漫无头绪直接查询"springdemo"高效很多。

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