diff options
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. |
