git pull时出现分支冲突(branch diverged)git
$ git statusspa
# On branch feature/worker-interfaceit
# Your branch and 'origin/br_dev' have diverged,di
# and have 1 and 4 different commit(s) each, respectively.co
解决办法:
一、查看哪一个commit冲突
git cherry origin/br_devinterface
二、回退到冲突的前一个commit
git reset --hard <commitID>commit
三、更新代码
git pull分支