What command is used to start a new branch in Git?
- git branch
- git init
- git new-branch
- git checkout -b
The 'git checkout -b' command is used to create and switch to a new branch in one step. It is a convenient shortcut for creating feature branches.
Loading...
Related Quiz
- When resolving conflicts, the git _______ command allows a user to navigate through conflicted files.
-
git _______
is used to view the specific changes introduced in a commit. - What are the best practices for managing a pull request in a large project?
- What is an essential step when migrating from a centralized VCS to Git?
- In a distributed version control system like Git, each contributor has a local copy of the ________.