diff options
| author | xuzhang3 <Zhangxu894765> | 2023-03-03 15:42:43 +0800 |
|---|---|---|
| committer | xuzhang3 <Zhangxu894765> | 2023-03-03 15:42:43 +0800 |
| commit | 1cc6eeb55a65be36e4c2f5eec98d3ef6d067b431 (patch) | |
| tree | 222e3ba6e465e0b6186c5a76f2027f0df974a6ac /website/docs/r/git_repository_branch.html.markdown | |
| parent | a06e20fdd809343752b9f8ca819c7eaed32fe3d9 (diff) | |
update docmain
Diffstat (limited to 'website/docs/r/git_repository_branch.html.markdown')
| -rw-r--r-- | website/docs/r/git_repository_branch.html.markdown | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/website/docs/r/git_repository_branch.html.markdown b/website/docs/r/git_repository_branch.html.markdown index e6cca74f..8d7e1444 100644 --- a/website/docs/r/git_repository_branch.html.markdown +++ b/website/docs/r/git_repository_branch.html.markdown @@ -48,11 +48,11 @@ The following arguments are supported: - `repository_id` - (Required) The ID of the repository the branch is created against. -- `ref_branch` - (Optional) The reference to the source branch to create the branch from, in `<name>` or `refs/heads/<name>` format. Throws error if set when `ref_tag` or `ref_commit_id` is also set. +- `ref_branch` - (Optional) The reference to the source branch to create the branch from, in `<name>` or `refs/heads/<name>` format. Conflict with `ref_tag`, `ref_commit_id`. -- `ref_tag` - (Optional) The reference to the tag to create the branch from, in `<name>` or `refs/tags/<name>` format. Throws error if set when `ref_branch` or `ref_commit_id` is also set. +- `ref_tag` - (Optional) The reference to the tag to create the branch from, in `<name>` or `refs/tags/<name>` format. Conflict with `ref_branch`, `ref_commit_id`. -- `ref_commit_id` - (Optional) The commit object id to create the branch from. Throws error if set when `ref_branch` or `ref_tag` is also set. +- `ref_commit_id` - (Optional) The commit object ID to create the branch from. Conflict with `ref_branch`, `ref_tag`. ## Attributes Reference @@ -60,4 +60,4 @@ In addition to the Arguments listed above - the following Attributes are exporte - `id` - The ID of the Git Repository Branch, in the format `<repository_id>:<name>`. -- `last_commit_id` - The commit object id of last commit on the branch. +- `last_commit_id` - The commit object ID of last commit on the branch. |
