github 搜索技巧常用

官方文档:https://docs.github.com/en/github/searching-for-information-on-github/searching-on-github

下面是一些搜索示例,整理自 B 站的 CodeSheep 的视频:https://www.bilibili.com/video/BV1yJ411S7Wu?from=search&seid=15041708919624950295

名字里面包含 spring boot:

in:name spring boot

名字里面包含 spring boot,且 stars 数超过 3000:

in:name spring boot stars:>3000

名字里面包含 spring boot,且 stars 数超过 3000,且 forks 数超过 30:

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

在 readme 里面搜索 spring boot:

in:readme spring boot

在 readme 里面搜索 spring boot限定 stars 数为大于 1500:

in:readme spring boot stars:>1500

在 description 里面搜索微服务:

in:description 微服务

在 description 里面搜索微服务,限定语言为 java:

in:description 微服务 language:java

在 description 里面搜索微服务,限定语言为 java,最后一次更新是在 2019-09-03 之后的:

in:description 微服务 language:java pushed:>2019-09-03

在 description 中搜索爬虫,限定语言为 python,stars 数量超过 1000,并且 2019 年 2 月份之后更新过的:

in:description 爬虫 language:python stars:>1000 pushed:>2019-02-01
posted @ 2021-02-20 20:44  模糊计算士  阅读(197)  评论(0编辑  收藏  举报