Boyan’s Reviews > Practical DevOps > Status Update

Boyan
Boyan is on page 31 of 389
May 09, 2019 06:04AM
Practical DevOps

flag

Boyan’s Previous Updates

Boyan
Boyan is on page 61 of 389
Continue from Chapter 5, Building the Code
Jun 03, 2019 08:03AM
Practical DevOps


Boyan
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
Practical DevOps


Boyan
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
Practical DevOps


No comments have been added yet.