This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
How can you create a new branch and select that branch to work on using one command?
git branch "newbranch"
git branch -c "newbranch"
git checkout "newbranch"
git checkout -b "newbranch"
How can you merge the branch feature-32 into the branch develop?
git merge feature-32 develop
git checkout feature-32\ and then git merge develop
git checkout develop\ and then git merge feature-32
git merge develop feature-32
Which of the following statuses isn't a valid reviewer status on a pull request?
Wait for author
Complete
Reject
Approve
Which branching strategy is based on a set of commands you can install using Visual Studio Code extensions, and that executes multiple commands at once?
Gitflow strategy
Feature strategy
Release strategy
Basic strategy
You must answer all questions before checking your work.
Was this page helpful?
Need help with this topic?
Want to try using Ask Learn to clarify or guide you through this topic?