今天在使用Git的时候 输入命令 git add . 提示错误:
使用 git status
原因是因为有删除的文件,没有跟新到本地的仓库而导致的。
解决办法: 使用 git add -A 或者 git add -all