Git - cheery-pick now handles the case where the changes are already present on the current branch (#229731)

This commit is contained in:
Ladislau Szomoru
2024-09-25 18:07:16 +02:00
committed by GitHub
parent 554b4c1b5e
commit 44d05b9dfa
3 changed files with 20 additions and 3 deletions

View File

@@ -409,5 +409,6 @@ export const enum GitErrorCodes {
EmptyCommitMessage = 'EmptyCommitMessage',
BranchFastForwardRejected = 'BranchFastForwardRejected',
BranchNotYetBorn = 'BranchNotYetBorn',
TagConflict = 'TagConflict'
TagConflict = 'TagConflict',
CherryPickEmpty = 'CherryPickEmpty'
}