Bird
0
0

Given the following commands, what is the current branch after finishing a feature named ui-update?

medium📝 Command Output Q4 of 15
Git - Collaboration Workflows
Given the following commands, what is the current branch after finishing a feature named ui-update?
git flow feature start ui-update
git flow feature finish ui-update
Amaster
Brelease
Cfeature/ui-update
Ddevelop
Step-by-Step Solution
Solution:
  1. Step 1: Understand feature finish behavior

    Finishing a feature merges it into develop and switches to develop branch.
  2. Step 2: Confirm current branch

    After finishing, the branch is develop, not master or release or the feature branch itself.
  3. Final Answer:

    The current branch is develop. -> Option D
  4. Quick Check:

    Feature finish switches to develop branch [OK]
Quick Trick: Finishing feature returns you to develop branch [OK]
Common Mistakes:
  • Assuming it stays on feature branch
  • Thinking it switches to master
  • Confusing with release branch

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Git Quizzes