Bird
0
0

What happens to the release branch after running git flow release finish 1.0.0?

medium📝 Command Output Q5 of 15
Git - Collaboration Workflows
What happens to the release branch after running git flow release finish 1.0.0?
AIt remains active for further changes
BIt is merged into master and develop, then deleted
CIt is merged only into develop
DIt is merged only into master
Step-by-Step Solution
Solution:
  1. Step 1: Understand release finish process

    Finishing a release merges it into both master and develop branches.
  2. Step 2: Check branch deletion

    The release branch is deleted after finishing to keep the repo clean.
  3. Final Answer:

    Release branch merges into master and develop, then is deleted. -> Option B
  4. Quick Check:

    Release finish merges to master & develop and deletes branch [OK]
Quick Trick: Release finish merges to master & develop, then deletes branch [OK]
Common Mistakes:
  • Thinking release branch stays active
  • Merging only to one branch
  • Not deleting release branch

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Git Quizzes