culTest

    One of the 25 questions in this topic

    How much do you know about Git & GitHub: Branches and Collaboration?

    If you are on the main branch and want to bring in changes from development, which command do you run?

    Answers

    git merge developmentCorrect
    git merge main
    git push development
    git checkout development

    You must be on the branch that will receive the changes and run merge naming the source branch.