gpt4 book ai didi

git - 无法将 refs 推送到远程尝试先运行 pull 以集成您的更改

转载 作者:行者123 更新时间:2023-12-03 14:35:14 38 4
gpt4 key购买 nike

当我尝试从 VScode 推送到 GitHub 时,我不断收到此错误。
我之前已经按照我现在正在遵循的完全相同的步骤推送到该存储库。找不到此错误原因的答案?

最佳答案

你得到这个 try running pull first to integrate your changes每当您的本地分支和远程分支不在同一点时,在您进行更改之前。

remote branch commits : A -> B -> C -> D
local branch commits : A -> B -> C -> Local_Commits

现在很明显,有变化 D你没有在本地集成。所以你需要 rebase ,然后推送,这将导致以下内容。
remote branch commits : A -> B -> C -> D
local branch commits : A -> B -> C -> D -> Local_Commits

要解决您的问题,请执行以下操作
git pull --rebase origin branchname
git push origin branchname

关于git - 无法将 refs 推送到远程尝试先运行 pull 以集成您的更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59790948/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com