拷贝了一个已有项目到新项目目录后,发现有一个子目录无法添加到 git 管理中。
这个子目录的特点是,曾经包含 .git 目录,然后被我手动删除。 但是这个目录再也无法添加到 git 管理中,而且用 git status 也无法显示其状态。
查看已被排除的文件及目录
git status --ignored
并没有发现该目录。
强制添加
如果是添加该子目录,没有任何提示,也没有添加成功。
git add -f backend
强制添加一个文件,才能看到提示信息
git add -f backend/go.mod
fatal: Pathspec 'backend/go.mod' is in submodule 'backend'
submodule
一个子目录中如果包含 .git 目录,会被认作一个 git submodule,其无法被 git add 进当前项目。
需要:
- 先删除子目录下的 .git 目录
- 然后 git rm --cached 该目录
- 最后 git add 此目录
解决方法
git rm --cached directory
git add directory
参考:
https://www.sunzhongwei.com/git-could-not-add-a-subdirectory-problem
标签:git,子目录,排查,add,添加,目录,backend From: https://www.cnblogs.com/rebrobot/p/17628461.html