github快速定位项目-搜索技巧

github页面特征如下所示

  • 项目名(name)
  • 摘要(description)
  • 说明文档(readme)
  • 查看(watch)
  • 点赞(start)
  • 拷贝(fork)
    github快速定位项目-搜索技巧_第1张图片
    通过观察github页面结构,可以对于每一项单独进行搜索限制,如:
# ,号为或的关系
bert in:name,description,readme
# 空格拼接,多个条件是且的关系
bert in:name in:description in:readme
# start数大于100的项目
start:>100
# start数在10-30之间的项目
start:10..30
# 同理watch和fork一样的条件限制

其他特征

语言,项目作者地区,项目大小等

# 语言为python,项目作者位于北京,项目大小大于5000,项目作者名字为userName
language:python loaction:BeiJing size:>5000 user:userName

你可能感兴趣的:(代码管理,github,定位)