github常用搜索条件:
1、搜索名字: in:name xxx
2、搜索描述: in:description xxx
3、搜索readme: in:readme xxx
4、按stars: stars:>2000
5、按fork: fork:>2000
6、仓库大小: size:>=5000 [5000指的是5000k]
7、按更新时间: pushed:>2020-01-01
8、按语言: language:xxx
9、按作者名: user:xxx[注 :后面不能有空格]
10、搜索方式可以组合
for example:
搜索一个名字包含springboot,基于Java语言开发,且stars数大于2000的项目:
in:name springboot in:language:java stars:>2000