culTest

    One of the 100 questions in this topic

    How much do you know about Git and Version Control?

    Which command is used to create a new branch?

    Answers

    git branch <branch_name>Correct
    git create <branch_name>
    git new <branch_name>
    git init <branch_name>

    To create a new branch in Git, you use the git branch <branch_name> command.