|
123456789101112131415161718192021222324252627 |
- # EditRepoOption
-
- ## Properties
- Name | Type | Description | Notes
- ------------ | ------------- | ------------- | -------------
- **allow_merge_commits** | **bool** | either `true` to allow merging pull requests with a merge commit, or `false` to prevent merging pull requests with merge commits. `has_pull_requests` must be `true`. | [optional] [default to null]
- **allow_rebase** | **bool** | either `true` to allow rebase-merging pull requests, or `false` to prevent rebase-merging. `has_pull_requests` must be `true`. | [optional] [default to null]
- **allow_rebase_explicit** | **bool** | either `true` to allow rebase with explicit merge commits (--no-ff), or `false` to prevent rebase with explicit merge commits. `has_pull_requests` must be `true`. | [optional] [default to null]
- **allow_squash_merge** | **bool** | either `true` to allow squash-merging pull requests, or `false` to prevent squash-merging. `has_pull_requests` must be `true`. | [optional] [default to null]
- **archived** | **bool** | set to `true` to archive this repository. | [optional] [default to null]
- **default_branch** | **String** | sets the default branch for this repository. | [optional] [default to null]
- **description** | **String** | a short description of the repository. | [optional] [default to null]
- **external_tracker** | [***::models::ExternalTracker**](ExternalTracker.md) | | [optional] [default to null]
- **external_wiki** | [***::models::ExternalWiki**](ExternalWiki.md) | | [optional] [default to null]
- **has_issues** | **bool** | either `true` to enable issues for this repository or `false` to disable them. | [optional] [default to null]
- **has_pull_requests** | **bool** | either `true` to allow pull requests, or `false` to prevent pull request. | [optional] [default to null]
- **has_wiki** | **bool** | either `true` to enable the wiki for this repository or `false` to disable it. | [optional] [default to null]
- **ignore_whitespace_conflicts** | **bool** | either `true` to ignore whitespace for conflicts, or `false` to not ignore whitespace. `has_pull_requests` must be `true`. | [optional] [default to null]
- **internal_tracker** | [***::models::InternalTracker**](InternalTracker.md) | | [optional] [default to null]
- **name** | **String** | name of the repository | [optional] [default to null]
- **private** | **bool** | either `true` to make the repository private or `false` to make it public. Note: you will get a 422 error if the organization restricts changing repository visibility to organization owners and a non-owner tries to change the value of private. | [optional] [default to null]
- **template** | **bool** | either `true` to make this repository a template or `false` to make it a normal repository | [optional] [default to null]
- **website** | **String** | a URL with more information about the repository. | [optional] [default to null]
-
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
|