
Answer-first summary for fast verification
Answer: Create separate feature branches from the main branch for production bug fixes and new version development.
The best option is A: Create separate feature branches from the main branch for production bug fixes and new version development. This approach allows for clear separation of concerns, ensuring that bug fixes to the production version can be developed, tested, and deployed independently of the new version development. This method also supports continuous integration and delivery best practices, ensuring that the changes in one branch do not interfere with the other.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
How should a developer manage code deployment for both production updates and new application version development in AWS CodeCommit?
A
Create separate feature branches from the main branch for production bug fixes and new version development.
B
Use Git tags to mark the production code and new version development stages, then push these tags to the repository.
C
Branch from the main to isolate production code, enforce access restrictions via IAM policy.
D
Create a separate CodeCommit repository for the new application version and tag the development stage.
No comments yet.