master branch is locked to avoid uncontrolled release (Mike is a master and he has the power, Tom is a humble programmer and he cannot touch the master branch)
a bug arises and is fixed by Tom who:
git flow hotfix start ...
work hard to fix the bug
git flow hotfix publish
Now is Mike's turn: how would he fetch the hotfix in order to perform a clean git flow hotfix finish?
How do I pull a published hotfix?
Scenario:
master
branch is locked to avoid uncontrolled release (Mike is a master and he has the power, Tom is a humble programmer and he cannot touch themaster
branch)git flow hotfix start ...
git flow hotfix publish
Now is Mike's turn: how would he fetch the hotfix in order to perform a clean
git flow hotfix finish
?