如何从gitbub里面找到项目

项目组成

项目有什么组成

  • Name:即仓库的名称
  • About:项目简单说明,项目的归类,项目的官网
  • Readme:这是项目的详细说明,一般包括项目的使用说明、开源协议
  • Contributors :作者
  • 源码:项目的代码

使用Github 精准搜索

1、in:name 条件

根据名字查找,只会显示仓库名称包含该name的项目

in:name springboot

2、in:readme 条件

根据readme文件包含的关键字进行过滤

in:readme springboot

4、language:条件

根据语言过滤

in:description springboot language:Java

 

in:readme "电商" springboot language:Java

 

5、pushed: 条件

根据推送时间过滤

in:description springboot language:Java puished:>2020-04-03

 这个我试过  显示找不到  后面可以在自己研究一下

6 .对项目名精确搜索,搜项目名中包含spring boot的

spring boot in:name stars:>3000 forks:>7000

在项目详情(README)中精确搜索,搜其中包含spring boot的

spring boot in:readme stars:>3000 forks:>7000

8  在项目描述中精确搜索,搜其中包含spring boot的

微服务 in:description language:  java

 9    in:description 电商 language:java in:name springboot     效果最好

# 编程语言为xxx(比如我上面的language:Java)
language:xxx
# 按照项目名/仓库名搜索(大小写不敏感)
in:name xxx 
# 按照项目描述搜索(比如我上面的description:电商, 如果是英文大小写不敏感)
in:description xxx
# 按stars数量大于多少搜索(比如我上面大于100就写成stars:>100)
stars:>xxx
# 按照forks数大于多少搜索
forks:>xxx
# 按照README搜索(大小写不敏感)
in:readme xxx
# 按照创建时间大于YYYY-MM-DD搜索
created:>YYYY-MM-DD
# 按照最新更新时间晚于YYYY-MM-DD
pushed:>YYYY-MM-DD

参考

干货:教你怎样在GitHub上快速高效寻找开源项目_码之初的博客-CSDN博客

GitHub的高级搜索

GitHub有高级搜索功能,search/advanced可以输入关键字代码库大小、包含作者代码语代码包含后缀文件名等。

 

精准搜索仓库标题、仓库描述、README
in关键词限制搜索范围

按照项目名/仓库名搜索(大小写不敏感)
(1)公式

in:name xxx 项目名包含xxx

in:description xxx 项目描述包含xxx

in:readme xxx 项目介绍文档里含有xxx

搜索项目名里含有 Spring Boot 的 in:name Spring Boot

搜索项目描述里含有 Spring Boot 的 in:description Spring Boot

stars或fork数量去查找

一个项目 star 数的多少,一般代表该项目的受欢迎程度 越受欢迎的项目,star数和fork数一定也不会少

(1)公式

stars:>xxx stars数大于xxx
stars:xx..xx stars数在xx…xx之间
forks:>xxx forks数大于xxx
forks:xx..xx forks数在xx…xx之间
 

 查找star数大于等于5000的springboot项目
     spring boot stars:>=5000
 查找fork数大于500的springcloud项目
     spring cloud forks:>500
 查找fork在100到200之间并且stars数在80到100之间的springboot项目
     spring boot forks:100..200 stars:80..100
 

spring boot stars:>=5000

  spring cloud forks:>500

 spring boot forks:100..200 stars:80..100

 
其他的请查看以下原文
原文链接:https://blog.csdn.net/as480133937/article/details/105611577】

猜你喜欢

转载自blog.csdn.net/m0_59281987/article/details/129957162