使用partial或begin-with的GitHub存储库搜索

时间:2015-10-02 19:21:26

标签: github

我想在一个存储库集合中进行代码搜索。我想使用存储库名称中的模式或命名约定来限制我的搜索。

1)我可以限制组织的搜索 示例:“user:google”

2)我可以直接搜索单个存储库。 示例:“repo:google / devtoolsExtended test”

那么,是否可以搜索以模式开头的所有存储库? 相当于:“repo:google / dev * test”

1 个答案:

答案 0 :(得分:0)

要搜索存储库,您只需输入查询,如下所示:

https://github.com/search?q=foo

这也会找到FooTablefoodme之类的回购,就像我们搜索foo*一样。如果您只想将搜索限制为存储库名称,请使用in:name,结果为:

https://github.com/search?q=foo+in%3Aname&type=Repositories

没有通过begins with或使用通配符进行搜索的明确方法,但也会显示这些类型的搜索结果。

来源: