我在一个大型仓库上工作。最近我们决定将其中一个文件夹移动到自己的子模块中
-- aaa
-- .git
-- bbb
-- ccc
-- www # this folder is going into its own repo.
我按照说明将www
文件夹过滤到此处列出的自己的回购邮件中:Detach (move) subdirectory into separate Git repository。我将www
文件夹移出了aaa
回购。
我通过运行以下命令从主分支中删除了目录:
$ cd aaa
$ git checkout master
$ git rm -rf www
$ git commit -m "remove the www/ folder from the aaa repo."
所以现在在master上,树看起来像这样:
-- aaa
-- .git
-- bbb
-- ccc
我想通过运行:
将www
添加为子模块
$ cd aaa
$ git checkout master
$ git submodule add git@bitbucket.org:kevinburke/www.git www
Cloning into 'www'...
remote: Counting objects: 717, done.
remote: Compressing objects: 100% (392/392), done.
remote: Total 717 (delta 318), reused 711 (delta 317)
Receiving objects: 100% (717/717), 440.52 KiB | 58 KiB/s, done.
Resolving deltas: 100% (318/318), done.
这对主人来说很好。但是,每当我尝试切换到另一个分支时,我都会收到以下错误:
$ cd aaa
$ git checkout other-old-branch
error: The following untracked working tree files would be overwritten by checkout:
www/1...
www/2...
www/3...
www/4...
Aborting
如何从www
回购邮件的所有分支中删除aaa
文件夹?大约有100个分支,因此手动执行此操作会很麻烦。
我并不担心保留旧分支的www
个文件夹中存在的任何未完成的更改。
答案 0 :(得分:17)
只需使用git checkout -f
来交换分支,然后像往常一样删除它们并合并到master中以获取子模块介绍。
答案 1 :(得分:-1)
由于仅在工作分支上删除了路径。 在所有其他分支上,路径均可用。 因此,您的子模块将引起冲突。