We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[TOC]
使用 git.io 设置 Github 项目的短链接
# url 为 地址,code 为短链码 curl -i https://git.io -F url="https://github.com/Ray-56/m-dream/issues" -F "code=~dream"
如何删除
更多了解
.gitattributes文件,映射仓库代码语言显示类型,eg:
.gitattributes
*.html linguist-language=typescript *.js linguist-language=typescript *.css linguist-language=less
shields.io 开源项目的质量元数据徽章
github docs
使用一些关键词查询想要的资源
awesome Rust # 可以查到 Rust 的一些集合资料,关键词 awesome React demo # 学习新技术的时候,可以搜索到其它人上传的例子,关键词 demo chrome extension starter # 用于开发 chrome 插件的空项目,查找特定空间的关键词 starter chrome extension tutorial # chrome 插件开发的教程,技术教程的关键词 tutorial
日期格式必须遵循ISO8601标准
可以在 https://github.com/search 内的 ProTip 中查看
tools stars:>200
tools stars:>=200
tools size:<=10000
tools stars:<=30
tools stars:100..200
tools created:>2012-03-11
YYYY-MM-DD
tools created:*..2012-03-11
hello NOT world
tools stars:>100 -language:javascript
-
适用in限定符,可以将搜索限制为仓库名称、说明、自述、文件内容或这些的任意组合。如果省略此限定符,则只搜索仓库名称、说明、文件内容
in
tools in:name
tools in:name,description
tools in:readme
repo:owner/name
foo in:file
foo inpath
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Github 速查表
[TOC]
git.io
如何删除
更多了解
特定文件
.gitattributes
文件,映射仓库代码语言显示类型,eg:元数据徽章
shields.io 开源项目的质量元数据徽章
搜索
github docs
使用一些关键词查询想要的资源
日期格式必须遵循ISO8601标准
可以在 https://github.com/search 内的 ProTip 中查看
范围查询
tools stars:>200
匹配有 tools 字样、star 超过 200 的仓库tools stars:>=200
tools size:<=10000
匹配有 tools 字样、小于 10KB 的文件tools stars:<=30
匹配有 tools 字样、star 不超过 30 的仓库tools stars:100..200
匹配 tools 字样、star 在 100~200 区间的仓库tools created:>2012-03-11
匹配 tools 字样、在 2012年3月11日 之后创建的YYYY-MM-DD
tools created:*..2012-03-11
含有 tools 字样、在 2012年3月11日 之前创建的排除特定结果
hello NOT world
匹配含有 hello 但不含有 world 的仓库tools stars:>100 -language:javascript
匹配 tools 字样、超过 100 star,但不是以 JavaScript 编写的仓库;-
号在 Baidu、Google 搜索引擎也同样适用根据仓库名称、说明文件内容搜索
适用
in
限定符,可以将搜索限制为仓库名称、说明、自述、文件内容或这些的任意组合。如果省略此限定符,则只搜索仓库名称、说明、文件内容tools in:name
仓库名称中含有 tools 的名称tools in:name,description
仓库名称或说明中含有 tools 的仓库tools in:readme
仓库自述文件中有 tools 的仓库repo:owner/name
特定仓库名称,用户名为 owner 的 hello-world 的仓库foo in:file
文件内容中出现 foo 的代码foo inpath
文件路径中出现 foo 的代码The text was updated successfully, but these errors were encountered: