如何在 Github 上搜索所有以文件扩展名“.feature”结尾的文件?

How can I search all files ending with the file extension `.feature` on Github?

我正在寻找使用 Gherkin syntax.

编写的 .feature 文件的示例

为什么?

因为我想在开始编写自己的作品之前从多个现实生活中的例子中学习。

我试过这个查询:

https://github.com/search?utf8=%E2%9C%93&q=extension%3Afeature&ref=simplesearch

但是没有结果。

感谢您的关注

根据 GitHub 在 Searching Code, under Considerations for code search 上的帮助页面,提到:

Except with filename searches, you must always include at least one search term when searching source code. For example, searching for language:javascript is not valid, while amazing language:javascript is.

因此,仅搜索 extension:feature 是行不通的。您需要至少使用一个搜索词。例如,Feature extension:feature,其中 Feature 是搜索词。

您也可以按语言搜索,例如使用Feature language:Gherkin