This topic created in 769 days ago, the information mentioned may be changed or developed.
我 fork 了一个上游仓库,然后修改了一个文件,有提交历史...A-->B-->C-->D-->E
跟上游仓库同步时,先 git fetch upstream master ,然后 git rebase upstream/master 。
在本地 vscode 中遇到冲突手动解决没什么问题,但是在 GitHub actions 中总是因为冲突而导致 rebase 失败。
我的需求是能保留提交历史 A-->B-->C-->D-->E ,修改的文件以我的为准。
请问有什么解决办法吗?