当前位置: 代码迷 >> 综合 >> Untracked Files Prevent Rebase IDEA拉取Git分支报错
  详细解决方案

Untracked Files Prevent Rebase IDEA拉取Git分支报错

热度:18   发布时间:2023-12-24 06:32:10.0

在idea中拉取分支的时候报如下错误,在网上找了很久,有的说把文件删掉,但删除时会发现项目会隐藏掉。

经过不懈的努力,终于找到了解决方案:

git fetch -all && git reset --hard origin/master && git pull

通过在IDEA工作台中的Terminal中执行该命令,Git端强制覆盖本地代码,有代码需要提交的同学慎用,此方法会完全保留云端最新代码覆盖本地代码

 

【参考链接】https://blog.csdn.net/weixin_44930692/article/details/106087082

  相关解决方案