Git Add a new branch and switch to that branch
git checkout -b
Here is what the above code is Doing:
1. git checkout -b
– This command creates a new branch and switches to it.
– The new branch is a copy of the current branch.
– The new branch is named