Implementing Automation for Cisco Security Solutions (SAUTO) — Question 39

Which two commands create a new local source code branch? (Choose two.)

Answer options

Correct answer: A, D

Explanation

The command 'git checkout -b new_branch' (option A) creates a new branch and switches to it, while 'git branch new_branch' (option D) only creates the branch without switching. The other options either do not create a branch or use incorrect syntax.