docs/workflow.md
Before working on an issue, it should be assigned to the person who wants to work on it. For core contributors, this means assigning yourself to the issue, and for external contributors, this means asking to be assigned to the issue. This is to avoid double work.
---
title: A feature or bug fix lives off of main
---
gitGraph
commit
commit
branch feat/cool-feature
checkout feat/cool-feature
commit
commit
checkout main
merge feat/cool-feature
commit
commit
Releases are commits tagged with a version number on main (see Releases).
---
title: Releases are tags on main
---
gitGraph
commit
commit
branch feat/cool-feature
checkout feat/cool-feature
commit
commit
checkout main
merge feat/cool-feature
commit tag: "v1.2.0"
commit