added another git repository inside your current repository

报错:我从github上下载了一个git仓库到我本地项目中。关联两个仓库之后执行命令git add时报错

added another git repository inside your current repository

中文的大概意思:在当前的仓库中还包含有另一个.git仓库而且不知道这两个仓库的嵌套关系。提示的意思是我们可以使用git submodule add <url> phto来设置git库的嵌套关系,如果我们是路径错误那就可以执行下面的命令删除git 仓库

解决措施:执行git rm --caches phto命令然后重新提交上传。

相关推荐