git变基与合并
迷茫
迷茫 2017-05-02 09:42:16
0
4
671

开发主分支master,
我需要做一个新的功能在master上建了一个新的分支A.开发周期比较长。
等A开发完之后,master分支已经经历过好几个版本的提交。
这时候我往master分支合并的时候:
是A分支直接合并到master过去?
还是把master分支拉到我的分支最新?
还是在A分支上变基?

求大神指点~ 谢谢。

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

reply all(4)
淡淡烟草味

Don’t touch the master, put the conflict resolution on branch A. The standard approach is to rebase master on your branch A, resolve the conflict and push it and then initiate a PR

Ty80

Merge or rebase (if this branch has no other users) master on A. Then test it and merge it back to master after passing it.

Ty80

It’s enough to just pull to master

漂亮男人
git chekout A
git rebase origin/master
git checkout master
git rebase A

Conflicts are resolved on A and then merged into master

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template