summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--website/azuredevops.erb3
-rw-r--r--website/docs/r/git_repository_branch.html.markdown8
2 files changed, 7 insertions, 4 deletions
diff --git a/website/azuredevops.erb b/website/azuredevops.erb
index 79e516e1..0b80cc8c 100644
--- a/website/azuredevops.erb
+++ b/website/azuredevops.erb
@@ -143,6 +143,9 @@
<a href="/docs/providers/azuredevops/r/git_repository_file.html">azuredevops_git_repository_file</a>
</li>
<li>
+ <a href="/docs/providers/azuredevops/r/git_repository_branch.html">azuredevops_git_repository_branch</a>
+ </li>
+ <li>
<a href="/docs/providers/azuredevops/r/group.html">azuredevops_group</a>
</li>
<li>
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.