当前位置:   article > 正文

【Git】解决error: The following untracked working tree files would be overwritten by merge:

error: the following untracked working tree files would be overwritten by me

问题描述:

git checkout 或 git pull 时提示error: The following untracked working tree files would be overwritten by merge:
        src/fe/v1/yarn.lock

问题解析:

本地工作区新增了某个文件(src/fe/v1/yarn.lock), 没有提交到本地库, 远程库存在同名的文件

解决方式:

使用git clean 命令,删除本地工作区的文件。

1、git clean -n 显示将要删除的文件和目录;

2、git clean -f 强制运行删除

  1. [hxy@kjj002v pc-xxxxxxxxx-com]$ git clean -n
  2. Would remove src/fe/v1/yarn-error.log
  3. Would remove src/fe/v1/yarn.lock
  4. [hxy@kjj002v pc-xxxxxxxx-com]$ git clean -f
  5. Removing src/fe/v1/yarn-error.log
  6. Removing src/fe/v1/yarn.lock

运行完成后可正常执行切换分支、git pull操作

参考:https://download.csdn.net/blog/column/9278138/103466142

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/1001912
推荐阅读
相关标签
  

闽ICP备14008679号