Bird
0
0

Which command correctly starts a new feature branch named login using Gitflow?

easy📝 Workflow Q12 of 15
Git - Collaboration Workflows
Which command correctly starts a new feature branch named login using Gitflow?
Agit flow start feature login
Bgit flow feature start login
Cgit start feature login
Dgit feature start login
Step-by-Step Solution
Solution:
  1. Step 1: Recall Gitflow feature start syntax

    The correct syntax to start a feature branch is git flow feature start <name>.
  2. Step 2: Check each option

    Only git flow feature start login matches the correct syntax exactly. Others have incorrect order or missing 'flow'.
  3. Final Answer:

    git flow feature start login -> Option B
  4. Quick Check:

    Feature start = git flow feature start [OK]
Quick Trick: Use 'git flow feature start ' to start features [OK]
Common Mistakes:
  • Omitting 'flow' in the command
  • Swapping command word order
  • Using 'git start' instead of 'git flow feature start'

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Git Quizzes