110k views
1 vote
You are implementing version control by using DevOps practices.

You need to provide a method to verify that deployed code is related to work on the backlog.
What should you do?
a. Link code changes to master branch items.
b. Link work items to code changes.
c. Create a version branch for all changes.
d. Create a separate branch for each change.

User Martin Cup
by
7.1k points

1 Answer

5 votes

Final answer:

To ensure that deployed code is related to work on the backlog, you should link work items to code changes.

Step-by-step explanation:

To verify that deployed code is related to work on the backlog while implementing version control using DevOps practices, you should link work items to code changes. This means associating each commit or code change with the corresponding task or work item from the backlog.

By linking work items to code changes, you can easily track and trace the changes made to the code back to the original tasks or requirements from the backlog. This provides transparency and helps in ensuring that the deployed code aligns with the planned work on the backlog.

User Tandav
by
7.7k points