Login
Remember
Register
Ask a Question
What does the command git checkout -b branchname do?
0
votes
asked
Feb 13, 2022
in
Git
by
rajeshsharma
What does the command git checkout -b branchname do?
a) Creates a new branch and switches to this new branch
b) Switches from the current branch to the new branch
c) Deletes the new branch
d) Commits the new branch
git-checkout
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Feb 13, 2022
by
rajeshsharma
a) "
git checkout -b branchname"
Creates a new branch and switches to this new branch
...