Git - Handle tag conflict during pull operation (#167278)

Handle tag conflict during pull operation
This commit is contained in:
Ladislau Szomoru
2022-11-25 18:05:22 +01:00
committed by GitHub
parent a05f15f5c8
commit d4a299631a
3 changed files with 74 additions and 4 deletions

View File

@@ -351,5 +351,6 @@ export const enum GitErrorCodes {
NoPathFound = 'NoPathFound',
UnknownPath = 'UnknownPath',
EmptyCommitMessage = 'EmptyCommitMessage',
BranchFastForwardRejected = 'BranchFastForwardRejected'
BranchFastForwardRejected = 'BranchFastForwardRejected',
TagConflict = 'TagConflict'
}