nerdexam
CiscoCisco

200-901 · Question #86

200-901 Question #86: Real Exam Question with Answer & Explanation

The correct answer is A: Combine multiple sequences of commits into one unified history. {"question_number": 1, "correct_answer": "A", "explanation": "git merge integrates changes from one branch into another by combining their commit histories into a unified timeline. It does not push to remotes (that is git push), switch branches (git checkout/switch), or manage br

Software Development and Design

Question

Which action does the Git command git merge allow the development to perform?

Options

  • ACombine multiple sequences of commits into one unified history
  • BPush changes to the remote repository
  • CSwitch between branches
  • DCreate, list, rename, and delete branches

Explanation

{"question_number": 1, "correct_answer": "A", "explanation": "git merge integrates changes from one branch into another by combining their commit histories into a unified timeline. It does not push to remotes (that is git push), switch branches (git checkout/switch), or manage branches (git branch). When merging, Git creates a new merge commit that ties together the histories of both branches.", "generated_by": "claude-sonnet", "llm_judge_score": 4}

Topics

#Git#Version Control#Merging#Collaborative Development

Community Discussion

No community discussion yet for this question.

Full 200-901 PracticeBrowse All 200-901 Questions