79334272

Date: 2025-01-06 20:42:47
Score: 0.5
Natty:
Report link

Update to Git Flow

What you have is a decent start and essentially follows basic git flow. However one suggestion I would have is not having branches for specific people, instead specific features which will set you up for a real git flow.

Furthermore instead of constantly freely merging (especially onto main) you could start using pull requests. When linking pull requests to feature branches you gain more control and a better history of updates.


Here is an example of typical git flow for any application:

your 'test' branch is equivalent to the 'development' branch in the diagram below

Typical Git Flow

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Kyle The Wizard