Skip to content

Github 高级搜索技巧

github 高级搜索技巧

基本搜索:

默认搜索是从master分支搜索代码 搜索语句不能有特殊字符如

. , : ; / \ ` ’ ” = * ! ? # $ & + ^ | ~ < > ( ) { } [ ].

高级搜索

  • 按文件搜索
Keywords in:file
  • 按照路径检索
Keywords in:path
  • 按照语言检索
Keywords language:java
  • 按照文件大小
Keywords size:>100
  • 按照后缀名检索
Keywords extention:php
  • 按照地域检索
Keywords location:beijing
  • 按照是否被fork过
Keywords fork:true
  • 从名字或者描述中匹配
Keywords  in:name,description
  • 按照创建时间
Keywords  created:<2011-01-01
  • 按照推送时间
Keywords  pushed:<2013-02-01
  • 按照用户(组织)来搜索
user:Keywords
  • 按照标签(topic)来搜索
topic:Keywords
  • 按照标签(topic)大于几来搜索
topics:>number
  • 按照用户邮箱来搜索
Keywords in:email
  • 按照登录名来搜索
Keywords  in:login
  • 按照真实名字来搜索
Keywords  in:fullname
  • 按照关键字搜索并加入组织的人
Keywords type:org

参考来源:

https://help.github.com/articles/searching-repositories/
https://github.com/search/advanced
https://help.github.com/categories/search/
https://zh.wikipedia.org/wiki/GitHub
https://zh.wikipedia.org/wiki/Git

Comments