Question 103

### Which of the following Git commands allow you to create a new branch and start working on it in one line? (Select two.) > https://git-scm.com/docs/git-switch - [x] git checkout -b `<new_branch_name>` - [ ] git branch -c `<new_branch_name>` - [x] git switch -c `<new_branch_name>` - [ ] git merge -m `<new_branch_name>` - [ ] git switch -m `<new_branch_name>` - [ ] git checkout -m `<new_branch_name>`