Git - better handle conflict during cherry-pick (#230312)

This commit is contained in:
Ladislau Szomoru
2024-10-02 16:39:30 +02:00
committed by GitHub
parent 9f3a7b5bc8
commit d085816005
6 changed files with 60 additions and 4 deletions

View File

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