解决方法: git清除本地缓存(改变成未track状态),然后再提交:
依次输入以下指令:
git rm -r --cached .
git add .
git commit -m "注释"
git push