如何解决 GitHub 上而非本地的合并冲突问题?

问题描述 投票:0回答:1

有人有过在 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 github gitlab
1个回答
0
投票

尝试使用要合并的分支执行 git pull origin

© www.soinside.com 2019 - 2024. All rights reserved.