Branching

Create new feature branches off of master by running git checkout -b <name>. See below for naming conventions.

1. Naming branches

Branches have the following naming convention:

<username>/<ticket-number>-<branch-name>

Branches should be all lowercase with dashes separating all words.

2. Cleaning up

Delete your branches after they’re merged.

Examples

Assuming a dev’s username is jsmith

A branch for adding user routes, related to Github ticket #35

jsmith/35-add-user-routes

A branch for updating the Organization contract, related to JIRA ticket XYZ-235

jsmith/xyz-235-update-organization