Git - Fix branch but not a hotfix
navvyua opened this issue · 2 comments
navvyua commented
What about long-term fixes which are not "hot"? Currently, I'm doing something like feature/1234-fix-inmate-updating
, maybe we can have a fix
namespace? So fix/1234-inmate-updating
.
stgeneral commented
These prefixes aim to describe the flow for the branch more than its' content. Hotfix branches - are for emergency cases and may have a shorter or quicker delivery path, while feature branches follow the regular flow.
More details about these branches: https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow and https://nvie.com/posts/a-successful-git-branching-model/.
navvyua commented
Ok, I see, thanks!