当前位置: 代码迷 >> 综合 >> git add .失败解决办法 (warning: You ran 'git add' with neither '-A (--all)' or '--ignore-removal')
  详细解决方案

git add .失败解决办法 (warning: You ran 'git add' with neither '-A (--all)' or '--ignore-removal')

热度:1   发布时间:2023-12-15 02:19:51.0

今天在使用Git的时候 输入命令 git add . 提示错误:

   

使用 git status

   

  原因是因为有删除的文件,没有跟新到本地的仓库而导致的。

 

解决办法: 使用 git add -A 或者  git add -all

 

 

  相关解决方案