in Git by

What is the git command to directly create and move to a new branch?

git checkout -b branchname

git checkout -x branchname

git checkout -c branchname

git checkout -d branchname

1 Answer

0 votes
by
git checkout -b branchname
...