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
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
Community Discussion
No community discussion yet for this question.