create a branch and switch to it in one command code example
Example 1: git branch and checkout at the same time
$ git checkout -b <branch_name>
Example 2: git switch branch
git switch <branch_name>
git checkout <branch_name>
Example 3: git switch branch
git switch branch_name
git checkout branch_name