“git submodule already exists in the index” 错误解析 1. 错误信息含义 “git submodule already exists in the index” 错误信息表明你尝试将一个子模块添加到 Git 仓库中,但是该子模块已经存在于 Git 的索引(index)中。这通常意味着子模块目录已经被 Git 跟踪,或者之前添加子模块的操作未能正确完成,留下了...
git submodule add 时明明已经删了文件但是还提示【already exists in the index】时因为git的缓存导致的,需要删除缓存的文件夹即可 $ git submodule add git@g***ml.git 'autotest' already exists in the index $ git rm -r --cached autotest
在一个大项目中,需要用git submodule add命令添加一个子模块(添加一个业务项目),执行下面的命令报错: git submodule add url_to_repo src/pages/biz-prpPlan 'src/pages/biz-prpPlan' already exists in the index 二、问题分析及解决方法 1、查看这个文件夹下有些什么东西 git ls-files --stage projectfolde...
今天想在项目中添加一个submodule 一直报这个错, 原因是有相同名字的模块已经存在于git的索引中。 如果确认项目中没有同名的模块, 只需运行命令: git rm -r --cached XXXXX (报错模块的相对路径,即XXXXX already exists in the index 中的XXXXX)
站长@ 十七度 · 21-10-10 00:26 git submodule add 报错 already exists in the index gitsubmodule:alreadyexistsintheindex_嵌入式技术在路上-CSDN... 在github上面clone一个包含有submodule的repo的时... https://blog.csdn.net/xingqingly/article/details/... ...
用tortoisegit菜单中的submodule add,输入源地址和目标路径,确定后提示了一个错误,如下: 'components/modem' already exists in the index git did not exit cleanly (exit code 1) (1625 ms @ 2018/11/8 16:02:09) 这意思就是说我的仓库索引里还有之前子模块的路径呗,于是乎,我又来了一番操作: ...
'CryptoLibrary' already exists in the index You have to unstage theCryptoLibrarydirectory first. Then you can add the submodule: $ git rm -r CryptoLibrary $ git submodule add https://github.com/chaconinc/CryptoLibrary Cloning into 'CryptoLibrary'... ...
die "$(eval_gettext "'\$sm_path' already exists in the index and is not a submodule")" fi 2、git对于mode的特殊处理 我们向git添加文件的时候,其实有一个没有明说的规则:git add添加的都是“文件”,而不包括文件夹。尽管在执行git add的时候经常使用文件夹来添加,但是git内部会将这个文件夹遍历,匹...
直接删除子模块并不能完全删除,再次添加的时候会报错'' already exists in the index. 用以下命令可以完全删除submodule: git rm --cached submodule子项目名字 rm -rf submodule子项目名字 执行完成后,再执行添加子模块命令即可,如果仍然报错,执行如下:
git submoduleaddhttps://github.com/sronzheng/mysubmodule.git 如果在当前目录下,已经有一个同名的目录mysubmodule,则git会反馈如下错误提示。 'mysubmodule' already exists in the index 这时需要从git库中,先删除这个这个目录,再重新添加。 git rm-r mysubmodule ...