git报"changes not staged for commit"的错误

在执行 git addgit commit -mgit push 时报 changes not staged for commit
这是由于在项目中引入第三方包时,第三方包中含有 .git。并且在检查上传的文件时,会发现目标文件夹是空的。
在进入目标目录后,删除 .git 文件,现执行 git status 后会发现没有相关的修改。
解决如下:

  1. 删除 .git 文件夹
rm -rf .git
  1. 删除已经上传的目标文件夹
git rm -r --cached "object file"
git commit -m "delete empty folder"
git push
  1. 这时 git status 会发现修改文件已经出现了
git add object
git commit -m "add object folder"
git push

你可能感兴趣的:(git)