2

我想从 Github 分叉一个弹性搜索的建议者。
我正在按照网站上的步骤操作,我被要求运行以下代码:

git://github.com/spinscale/elasticsearch-suggest-plugin.git

我应该在哪个班级运行它?我应该为它创建一个新项目还是应该在我当前的项目中运行它?

我正在使用 eclipse 和 play 框架。

4

1 回答 1

0

git://github.com/spinscale/elasticsearch-suggest-plugin.git我在GitHub elasticsearch-suggest-plugin 页面上看到“”的唯一行是:

如果您想在存储库上工作

  • 克隆这个 repogit clone git://github.com/spinscale/elasticsearch-suggest-plugin.git
  • 运行:gradle clean assemble zip- 这不会运行任何单元测试,因为它们需要一些时间。如果你想运行它们,最好运行gradle clean build zip
  • 安装插件:/path/to/elasticsearch/bin/plugin -install elasticsearch-suggest -url file:///$PWD/build/distributions/elasticsearch-sugges

所以这一行是关于在本地克隆该 repo 以运行插件。
这不是关于“要运行的课程”。这是 DVCS(分布式版本控制系统)Git必须用来克隆存储库的地址。

git clone git://github.com/spinscale/elasticsearch-suggest-plugin.git
于 2012-04-19T18:55:47.807 回答