跳转到内容
Try Gitea Cloud ☁️ for 30 days → Accelerate your Development & Deploys!
这是 1.22.6 的文档,已不是最新发布版本。查看最新发布版本

AGit 设置

当前中文文档翻译不是最新版,访问英文版本查看最新内容,或帮助我们翻译

在 Gitea 1.13 版本中,添加了对 agit 的支持。

AGit 允许在推送代码到远程仓库时创建 PR(合并请求)。 通过在推送时使用特定的 refspec(git 中已知的位置标识符),可以实现这一功能。 下面的示例说明了这一点:

Terminal window
git push origin HEAD:refs/for/main

该命令的结构如下:

  • HEAD:目标分支
  • refs/<for|draft|for-review>/<branch>:目标 PR 类型
    • for:创建一个以 <branch> 为目标分支的普通 PR
    • draft/for-review:目前被静默忽略
  • <branch>/<session>:要打开 PR 的目标分支
  • -o <topic|title|description>:PR 的选项
    • title:PR 的标题
    • topic:PR 应该打开的分支名称
    • description:PR 的描述
    • force-push=true: 是否强制更新目标分支
      • 注意: 如果不传值,只用 -o force-push 是无法正常工作的。

下面是另一个高级示例,用于创建一个以 topictitledescription 为参数的新 PR,目标分支是 main

Terminal window
git push origin HEAD:refs/for/main -o topic="Topic of my PR" -o title="Title of the PR" -o description="# The PR Description\nThis can be **any** markdown content.\n- [x] Ok"