Boyan’s Reviews > Practical DevOps > Status Update
Like flag
Boyan’s Previous Updates
Boyan
is on page 58 of 389
Code review tools:
gerrit,
Allows for finer grained access into sensitive codebases.
Solves the problem that leads to there being passwords in the repos instead.
pull request model,
Developers can fork the master repository, make changes to their local branch and submit a pull request, which the repo owner can then review and opt to pull the changes into the main repository.
— Jun 03, 2019 06:57AM
gerrit,
Allows for finer grained access into sensitive codebases.
Solves the problem that leads to there being passwords in the repos instead.
pull request model,
Developers can fork the master repository, make changes to their local branch and submit a pull request, which the repo owner can then review and opt to pull the changes into the main repository.
Boyan
is on page 45 of 389
Master branch contains finished work. All releases happen from master.
Develop is where the next release happens. When worst is finished, develop is merged to master.
Feature branches develop new features, they are merged to develop.
When a devastating bug is revealed in production, a hotfix branch is made where a bug fix is created. The hotfix branch is then merged to master and a new production release is made.
— May 13, 2019 08:20AM
Develop is where the next release happens. When worst is finished, develop is merged to master.
Feature branches develop new features, they are merged to develop.
When a devastating bug is revealed in production, a hotfix branch is made where a bug fix is created. The hotfix branch is then merged to master and a new production release is made.

