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.

How to create a branch?
git checkout -b "branch name"
Last updated