我使用git提交一个文件夹到仓库,但如图所见,即使在git commit后,依然会提示未提交,请教各位这是为什么呢,该如何解决呢?
It should be that the directory where your submitted file is located has been ignored, so commit is useless. Check the .gitignore file. If it has been deleted, add it again
git commit -am "baidu_ife"
Just do it like this, but it is not recommended to use the --all option
--all
git add --all git commit -m "备注"
It should be that the directory where your submitted file is located has been ignored, so commit is useless. Check the .gitignore file. If it has been deleted, add it again
git commit -am "baidu_ife"
Just do it like this, but it is not recommended to use the
frequently.--all
option