git解决冲突提交后 仍然存在冲突

问题复现:项目用vercel部署,在treasure分支开发后,push到远程treasure分支,提Pull request。之后产品经理在部署,说vercel提示有冲突,我又stash, pull,stash pop,发现本地代码确实有冲突,解决后重新push,冲突依然在。

问题根源:在提Pull request的时候没有merge develop分支的代码

on feature branch

git checkout develop//切到develop分支
git pull origin develop//同步远程develop分支的代码
git checkout feature//切回feature分支
git merge develop//feature分支合并develop代码
git add .
git commit -m "first commit"
git push origin feature

你可能感兴趣的:(踩坑系列,git,github)