GitAsyncRefOperationFailureStatus Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
[System.Runtime.Serialization.DataContract]
public enum GitAsyncRefOperationFailureStatus
type GitAsyncRefOperationFailureStatus =
Public Enum GitAsyncRefOperationFailureStatus
- Inheritance
-
GitAsyncRefOperationFailureStatus
- Attributes
Fields
| Name | Value | Description |
|---|---|---|
| None | 0 | No status |
| InvalidRefName | 1 | Indicates that the ref update request could not be completed because the ref name presented in the request was not valid. |
| RefNameConflict | 2 | The ref update could not be completed because, in case-insensitive mode, the ref name conflicts with an existing, differently-cased ref name. |
| CreateBranchPermissionRequired | 3 | The ref update request could not be completed because the user lacks the permission to create a branch |
| WritePermissionRequired | 4 | The ref update request could not be completed because the user lacks write permissions required to write this ref |
| TargetBranchDeleted | 5 | Target branch was deleted after Git async operation started |
| GitObjectTooLarge | 6 | Git object is too large to materialize into memory |
| OperationIndentityNotFound | 7 | Identity who authorized the operation was not found |
| AsyncOperationNotFound | 8 | Async operation was not found |
| Other | 9 | Unexpected failure |
| EmptyCommitterSignature | 10 | Initiator of async operation has signature with empty name or email |