执行命令git add .报错
warning: adding embedded git repository: ios-rongimdemo
hint: You've added another git repository inside your current repository.
中文的大概意思:在当前的仓库中还包含有另一个.git仓库而且不知道这两个仓库的嵌套关系。提示的意思是我们可以使用git submodule add <url> phto来设置git库的嵌套关系,如果我们是路径错误那就可以执行下面的命令删除git 仓库
解决措施:
执行
git rm --cached ios-rongimdemo
然后重新提交上传。
屏幕快照 2019-12-24 上午10.23.36.png
网友评论