如上图,我们在master
和develop
两个分支上进行工作,其中master
分支是用来发布稳定版本的。
然后突然发现1.2版本有一个bug急需修复。
于是新建了一个hotfix
分支,在上面修改代码。
修改好了,当然是希望把hotfix
这个分支既merge回master
又merge回develop
分支,
但是从往master
上merge的时候一切正常,但是往develop
分支上merge的时候提示冲突,似乎是因为develop
分支比master
领先了,而hoxfix
又是从master
的1.2版牵出来的。
请问hotfix的正确使用方法。。
Yes, it’s okay if conflicts arise, just resolve them.
The correct way to use it is to resolve conflicts when there are conflicts
If master is normal, don’t worry about it. Just resolve the conflict on dev
develop and hotfix modified a file at the same time