为什么没有`git flow hotfix fetch`?

时间:2017-12-11 10:49:31

标签: git git-flow

不时与地理位置分散的开发团队合作,会发生一位同事准备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.

1 个答案:

答案 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