有人有过在 github 上看到 PR 冲突但没有看到本地功能分支冲突的经历吗? 我的步骤是
git checkout master
git checkout -b feature/aaa
modify some file, a on feature branch
git add file && git commit "message" & git push
at the same time, someone modify file on master
create a PR, then github show "PR cannt be merged" some conflicted
我在网上查了一下,看到很多人都有同样的经历,在GitHub上合并冲突,而不是在本地? 但我没有看到任何解决方案。我感谢所有的意见
顺便说一句,我无法更改 git 流程,因为它是使用 CI/CD 的部门开发流程
尝试使用要合并的分支执行 git pull origin