Create a branch

What is a branch?

A branch is a version of the code that is different from another branch. Committing and pushing to the same branch will not impact another branch.

There are 2 other branches "add-richard" and "patch-1"

How to create a branch?

git checkout -b "branch name"

Last updated