gpt4 book ai didi

Git 从错误的分支中 pull 出

转载 作者:太空狗 更新时间:2023-10-29 13:34:09 30 4
gpt4 key购买 nike

我在服务器上有两个分支一个叫 R2 的分支和一个叫 DEV 的分支我无意中登录了错误的服务器,进入了存储库并执行了GIT pull 源开发但是存储库在 R2 上。所以我意识到我的错误然后尝试通过做一个来纠正我的错误GIT pull 源 R2但是我最终得到了一堆文件名和错误

U   view/private_api/ipn.phtml
M view/reports/menScholarshipForm.pdf
M view/reports/printProCard.phtml
M view/reports/printSanction.phtml
M view/sanctionDetailRoster.html
M view/sanctionDetailVerify.html
M view/verifyMembership.phtml
Pull is not possible because you have unmerged files.
Please, fix them up in the work tree, and then use 'git add/rm <file>'
as appropriate to mark resolution, or use 'git commit -a'.

我不介意进入并手动重置每个文件,只是不确定如何解决我的错误。谢谢

最佳答案

git pull只是 git fetch 后跟 git merge FETCH_HEAD 的简写。看起来您在 git merge 遇到了一些冲突阶段。

git merge --abort 将中止 merge 过程并尝试重建 merge 前的状态。

收件人reset R2origin/R2 中的内容:

git checkout R2
git fetch origin
git stash # because it's always a good thing to do
git reset --hard origin/R2

关于Git 从错误的分支中 pull 出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18772613/

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