Create branch and checkout at the same time in git Code Example
create branch and checkout at the same time in git
git checkout -b
# --> name of the new branch being created.
# --> name of the branch to branch from.
#NB: no need to provide if that is the active branch.