一、查找你需要的开源项目
1、github官方主页搜索栏之命令
(1)XXX关键词 in:name 或description或readme
- 查询项目名称带有秒杀(seckill)的:
seckill in name
- 查询项目描述带有秒杀(seckill)的:
seckill in description
- 查询项目readme文件中带有秒杀(seckill)的:
seckill in readme
- 混合使用上面命令:
seckill in name,description,readme
(2)XXX关键词 stars 通配符(:>或:>=)
- 查询点赞数(stars)超过5k的springboot项目:
springboot stars:>=5000
- 查询关注数(forks)超过500的springcloud项目:
springcloud forks:>=500
(3)区间范围命令
- 查询点赞数(stars)在80到100,关注数(forks)在100到200的springboot项目:
springboot stars:80..100 forks:100..200
(4)awesome筛选精品命令
- 查找关于redis的精品项目、框架、教程等:
awesome redis
2、github地址栏之命令
(1)#L定位命令
- 进入并高亮显示某文件的第某行,直接在地址栏的地址后面加上#L回车进入:
https://github.com/dyc87112/SpringBoot-Learning/blob/master/2.1.x/chapter4-2/src/main/resources/templates/index.html#L10
- 进入并高亮显示某文件的第某行到第某行,直接在地址栏的地址后面加上#L-#L回车进入:
https://github.com/dyc87112/SpringBoot-Learning/blob/master/2.1.x/chapter4-2/src/main/resources/templates/index.html#L10-#L20
3、键盘快捷键
(1)项目内搜索之t命令
- 找到你心仪的项目后按键盘的t,就成了列表的形式
4、查找某个地区的github大佬
location:beijing language:java
二、GitHub慢,使用加速器
官方下载地址:https://github.com/dotnetcore/fastgithub/releases
我下载好的:https://download.csdn.net/download/weixin_42707397/85402027