29.1k views
2 votes
When is the Online Conflict Resolution triggered?

A) During the Deployment
B) After detecting a merge conflict between a feature branch and the Promotion branch
C) During the Commit Process

User Rabban
by
8.6k points

1 Answer

4 votes

Final answer:

Online Conflict Resolution is triggered after a version control system detects a merge conflict between branches during the process of merging code changes.

Step-by-step explanation:

The Online Conflict Resolution is typically triggered B) After detecting a merge conflict between a feature branch and the Promotion branch. Online Conflict Resolution comes into play during the version control process when multiple changes have been made by different developers to the same part of the code. This can occur when a developer tries to merge their feature branch into a shared branch, commonly the main or develop branch, and the version control system detects conflicting changes that cannot be automatically resolved.

User Flankechen
by
7.7k points