其他分享
首页 > 其他分享> > stop to merge develope into your own branch

stop to merge develope into your own branch

作者:互联网

 Use rebase instead:
1. git checkout develop
2. git pull
3. git checkout feature/#X-my_feature
4. git rebase origin/develop   If there are some conflicts :
5. resolved conflicts
6. git rebase --continue
7. if there are still conflicts, go to 5    8. git push -f

标签:git,develope,into,there,feature,own,conflicts,develop,rebase
来源: https://www.cnblogs.com/payzulla/p/12111456.html