4.0k views
2 votes
If the component happens to be in the master or main branch A ___ will be completed ___.

A) Deployment, automatically
B) Commit, manually
C) Merge, automatically
D) Rollback, manually

User Ceving
by
7.6k points

1 Answer

3 votes

Final answer:

The correct answer is C) Merge, automatically, as integration with CI/CD pipelines often results in merges to the master or main branch triggering automatic deployments.

Step-by-step explanation:

If the component happens to be in the master or main branch, a merge will be completed automatically. This is because modern version control systems, such as Git, are often integrated with continuous integration/continuous deployment (CI/CD) pipelines. Upon merging code into the master or main branch, the CI/CD pipeline is typically triggered to automatically build, test, and deploy the application or component to the respective environment, such as production or staging, without the need for manual intervention. Hence, the correct answer to this question is C) Merge, automatically.

User Snowindy
by
8.0k points