与地理上分散的开发团队一起工作时,同事会准备一个git flow hotfix并发布它供评审(或者因为他没有finish的授权)。
当我git pull回购时,我无法以正确的方式获取修补程序:分支在本地回购中,但它没有被标记为修补程序。
我怎样才能正确地执行这个工作流?
里卡多:
$ 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.发布于 2017-12-11 11:06:31
工作流程是:
里卡多:
$ 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 finishhttps://stackoverflow.com/questions/47751244
复制相似问题