mirror of
https://gitea.com/gitea/docs.git
synced 2026-07-22 11:17:51 +00:00
Update zh tw languages and fix some broken links (#455)
--------- Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: silverwind <2021+silverwind@noreply.gitea.com> Reviewed-on: https://gitea.com/gitea/docs/pulls/455 Reviewed-by: silverwind <2021+silverwind@noreply.gitea.com>
This commit is contained in:
@@ -9,17 +9,17 @@ aliases:
|
||||
|
||||
# AGit
|
||||
|
||||
在 Gitea `1.13` 版本中,添加了對 [AGit](https://git-repo.info/en/2020/03/agit-flow-and-git-repo/) 的支援。AGit 允許用戶在沒有倉庫寫入權限的情況下直接創建拉取請求,也不需要分叉倉庫。這有助於減少重複倉庫的數量,降低不必要的磁盤使用量。
|
||||
在 Gitea `1.13` 版本中,添加了對 [AGit](https://git-repo.info/en/2020/03/agit-flow-and-git-repo/) 的支援。AGit 允許使用者在沒有儲存庫寫入權限的情況下直接建立拉取請求,也不需要分叉儲存庫。這有助於減少重複儲存庫的數量,降低不必要的磁盤使用量。
|
||||
|
||||
:::note
|
||||
伺服器端需要 Git 版本 2.29 或更高版本才能正常運行。
|
||||
:::
|
||||
|
||||
## 使用 AGit 創建 PR
|
||||
## 使用 AGit 建立 PR
|
||||
|
||||
AGit 允許在推送代碼到遠程倉庫時創建 PR(合併請求)。
|
||||
AGit 允許在推送程式碼到遠程儲存庫時建立 PR(合併請求)。
|
||||
通過在推送時使用特定的 refspec(git 中已知的位置標識符),可以實現這一功能。
|
||||
下面的示例說明了這一點:
|
||||
下面的範例說明瞭這一點:
|
||||
|
||||
```shell
|
||||
git push origin HEAD:refs/for/main
|
||||
@@ -28,10 +28,10 @@ git push origin HEAD:refs/for/main
|
||||
該命令的結構如下:
|
||||
|
||||
- `HEAD`:目標分支
|
||||
- `origin`:目標倉庫(不是分叉!)
|
||||
- `origin`:目標儲存庫(不是分叉!)
|
||||
- `HEAD`:包含您提議更改的本地分支
|
||||
- `refs/<for|draft|for-review>/<branch>`:目標 PR 類型和配置
|
||||
- `for`:創建一個以 `<branch>` 為目標分支的普通 PR
|
||||
- `refs/<for|draft|for-review>/<branch>`:目標 PR 類型和設定
|
||||
- `for`:建立一個以 `<branch>` 為目標分支的普通 PR
|
||||
- `draft`/`for-review`:目前被靜默忽略
|
||||
- `<branch>/`:您希望將更改合併到的分支
|
||||
- `-o <topic|title|description>`:PR 的選項
|
||||
@@ -41,7 +41,7 @@ git push origin HEAD:refs/for/main
|
||||
- `force-push=true`: 是否強制更新目標分支。
|
||||
- 注意: 省略值並僅使用 `-o force-push` 也可以正常工作。
|
||||
|
||||
下面是另一個高級示例,用於創建一個以 `topic`、`title` 和 `description` 為參數的新 PR,目標分支是 `main`:
|
||||
下面是另一個高級範例,用於建立一個以 `topic`、`title` 和 `description` 為參數的新 PR,目標分支是 `main`:
|
||||
|
||||
```shell
|
||||
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"
|
||||
|
||||
Reference in New Issue
Block a user