An opinionated CLI for doing git-flow with GitHub for Cargo and Yarn workspaces.
```bash cargo install git_flow
gitflow validate-branch $BRANCHNAME ```
Branches must begin with one of the following prefixes:
A feature branch implements new functionality into our codebase and corresponds with a previously-planned issue.
An improvement branch implements new functionality into our codebase and does not correspond to a previously-planned issue. These are open issues for refactoring and security.
A bugfix addresses a previously reported bug. The fix will be included in the next minor or major release cycle.
A hotfix addresses a previously reported bug, and introduces functionality that necessitates a patch version update.
A hotfix-base branch corresponds to a hotfix, and must be correlated to a previously tagged commit.
A release branch updates the version of one of our packages. A release branch can only contain the version bump and the corresponding changelog bump.
A deployment branch updates our infrastructure to run a new version of a package on our managed servers. A deployment branch can only contain the necessary changes to deploy a new version of a package.