如何将项目添加到gerrit代码审查工具中?

发布于 2024-10-14 04:05:36 字数 80 浏览 2 评论 0原文

如何手动将项目添加到 gerrit 代码审查工具中?

我见过一些执行 gerrit 二进制文件的示例,但我的安装似乎没有其中之一。

How do I manually add a project to the gerrit code review tool?

I've seen some examples that execute a gerrit binary but my installation doesn't appear to have one of these.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

岁月静好 2024-10-21 04:05:36

对于较旧的 Gerrit 版本,您需要使用 ssh 接口。在 Web 界面中设置您的公钥,然后运行:

ssh -p <port> <user>@<gerrit-host> gerrit --help

这将列出可用的命令。创建项目实际需要运行的是:

ssh -p <port> <user>@<gerrit-host> gerrit create-project -n <project-name>

在 Gerrit 2.3 及更高版本中,您也可以通过转到 Admin->Projects->Create New Project 从 UI 创建项目。

For older Gerrit versions, you need to use the ssh interface. Set up your public key in the web interface then run:

ssh -p <port> <user>@<gerrit-host> gerrit --help

This will list you the available commands. What you actually need to run to create your project is:

ssh -p <port> <user>@<gerrit-host> gerrit create-project -n <project-name>

In Gerrit 2.3 and newer, you may alternatively create projects from the UI, by going to Admin->Projects->Create New Project.

泪意 2024-10-21 04:05:36

从 gerrit 2.3.x 开始,如果您使用管理员身份,也可以在 Web 中创建项目。

如果您有权限,它可以在“管理/项目”下看到。

From gerrit 2.3.x, if you are in Administrator, you can create the project in the web as well.

It is visible under Admin/Projects if you have permission.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文