Open your terminal or command prompt
Navigate to your Git repository
Create a new branch with `git branch branch-name`
Switch to the new branch with `git checkout branch-name`
Or create and switch in one step with `git checkout -b branch-name`
Or use `git switch -c branch-name`
Verify the branch with `git branch`
Push the branch to the remote with `git push -u origin branch-name`
