Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 824 Bytes

BRANCH_CREATE.md

File metadata and controls

31 lines (19 loc) · 824 Bytes

Home

Create a Branch

Tip: Remember that curly braces in commands below should not be typed by you. They indicate that you should place your own value there without curly braces.

Feature Branch

When you are ready to work on a new feature, or continue work on a feature that was started in a previous branch.

git switch -c feature/{feature name}

The -c creates the branch before switching to it.

Bug Branch

When you are ready to work on a new feature, or continue work on a feature that was started in a previous branch.

git switch -c bugfix/{bug}

The -c creates the branch before switching to it.

Related Guides