Valid 200-901 Dumps shared by ExamDiscuss.com for Helping Passing 200-901 Exam! ExamDiscuss.com now offer the newest 200-901 exam dumps, the ExamDiscuss.com 200-901 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 200-901 dumps with Test Engine here:
How is a branch called "my-bug-fix" started to develop a fix needed in a product?
Correct Answer: B
To start a new branch in Git for developing a fix, the git checkout -b my-bug-fix command is used. This command creates a new branch called "my-bug-fix" and checks it out in one step, allowing you to start working on it immediately. * git checkout -b my-bug-fix combines the creation of the branch (git branch my-bug-fix) and switching to it (git checkout my-bug-fix) into a single command. References: * Git Branching Basics