不时与地理位置分散的开发团队合作,会发生一位同事准备git flow hotfix
并将其发布以供审核(或因为他没有向finish
提供资助)。
当我git pull
回购时,我无法以正确的方式获取此修补程序:分支存在于本地存储库中但未标记为修补程序。
如何正确执行此工作流程?
的Riccardo:
$ git pull
$ git flow hotfix start myhotfix
...
$ git commit -m "Fixed!" -a
$ git flow hotfix publish
卢卡:
$ git pull
$ git flow hotfix
No hotfix branches exist.
答案 0 :(得分:2)
工作流程是:
的Riccardo:
$ git pull
$ git flow hotfix start myhotfix
...
$ git commit -m "Fixed!" -a
$ git flow hotfix publish
卢卡:
$ git pull
$ git flow hotfix
No hotfix branches exist.
$ git checkout hotfix/myhotfix
$ git flow hotfix
* myhotfix
$ git flow hotfix finish