如何删除Git子模块?
顺便说一句,我不能简单地做一个原因
git submodule rm whatever
吗?
.git/config
。接受的答案显示了完全删除一个子模块的最新方法。在此答案中也更简洁地解释了:stackoverflow.com/a/36593218/1562138
如何删除Git子模块?
顺便说一句,我不能简单地做一个原因
git submodule rm whatever
吗?
.git/config
。接受的答案显示了完全删除一个子模块的最新方法。在此答案中也更简洁地解释了:stackoverflow.com/a/36593218/1562138
Answers:
用“
submodule init
” 表示对子模块的兴趣后,瓷器就没有办法说“我不再对此子模块感兴趣”。
“submodule deinit
”是这样做的方法。
删除过程也会使用git rm
(自git1.8.5 2013年10月起)。
3个步骤的删除过程如下:
0. mv a/submodule a/submodule_tmp
1. git submodule deinit -f -- a/submodule
2. rm -rf .git/modules/a/submodule
3. git rm -f a/submodule
# Note: a/submodule (no trailing slash)
# or, if you want to leave it in your working tree and have done step 0
3. git rm --cached a/submodule
3bis mv a/submodule_tmp a/submodule
rm -rf
:Daniel Schroeder的回答中提到了这一点,Eonil在评论中总结了这一点:
这
.git/modules/<path-to-submodule>/
保持不变。
因此,如果您一次使用此方法删除了子模块并再次重新添加,则将不可能,因为存储库已损坏。
git rm
:参见commit 95c16418:
当前
git rm
在子模块上使用“ ”会从超级项目中删除子模块的工作树,并从索引中删除gitlink。
但是子模块中的部分.gitmodules
保持不变,这是现在删除的子模块的剩余部分,可能会激怒用户(与中的设置相反.git/config
,这必须提醒用户对该子模块表现出兴趣,因此稍后将其填充当签出较旧的提交时)。让“
git rm
”不仅通过从工作树中删除子模块,而且还通过submodule.<submodule name>
从.gitmodules
文件中删除“ ”部分并同时上载这两个步骤来帮助用户。
git submodule deinit
:源于此补丁:
使用“
git submodule init
”,用户可以告诉git他们关心一个或多个子模块,并希望在下一次调用“git submodule update
” 时填充它。
但是目前,没有一种简单的方法可以告诉git他们不再在乎子模块,并且想要摆脱本地工作树(除非用户对子模块内部了解很多,并且submodule.$name.url
从.git/config
工作中删除“ ”设置树自己)。通过提供“
deinit
”命令来帮助那些用户。
这将从给定子模块(或给定子模块(如果给定为')的所有子模块中删除)中删除整个submodule.<name>
节.git/config
.
。
如果当前工作树包含修改,则该操作失败,除非强制执行。
对于在命令行上给出的子模块,在找不到url设置时提出投诉.git/config
,但仍然不会失败。
如果(取消)初始化步骤(.git/config
和.git/modules/xxx
),则需要注意
由于git1.8.5的git rm
需要也关心的:
add
”步骤在.gitmodules
文件中记录了子模块的url :需要为您删除。git rm --cached path_to_submodule
不带斜杠)如果忘记了最后一步,并尝试将子模块添加为常规目录,则会收到以下错误消息:
git add mysubmodule/file.txt
Path 'mysubmodule/file.txt' is in submodule 'mysubmodule'
注意:从Git 2.17(Q2 2018)开始,git子模块deinit不再是Shell脚本。
这是对C函数的调用。
参见Prathamesh Chavan()提交的commit 2e61273和commit 1342476(2018年1月14日)。(由Junio C Hamano合并--在commit ead8dbe中,2018年2月13日)pratham-pc
gitster
git ${wt_prefix:+-C "$wt_prefix"} submodule--helper deinit \
${GIT_QUIET:+--quiet} \
${prefix:+--prefix "$prefix"} \
${force:+--force} \
${deinit_all:+--all} "$@"
submodule deinit
吗?
.gitmodules
应该没问题,但是我仍然会仔细检查.git
目录中的任何内容(即本地配置,在本地存储库中):这不是由a git pull
)修改
.gitmodules
在索引中提交了删除条目和特殊条目的删除,并推送该存储库,其他人可以将其拉出,并且该子模块将消失。
git rm submodule
就像其他人已经说过的那样,plain old 确实可以满足您的要求。
要删除子模块,您需要:
.gitmodules
文件中删除相关部分。.gitmodules
更改:git add .gitmodules
.git/config
。git rm --cached path_to_submodule
不带斜杠)。.git
目录:rm -rf .git/modules/path_to_submodule
git commit -m "Removed submodule <name>"
rm -rf path_to_submodule
另请参阅:以下替代步骤。
git submodule rm
只是删除子模块注册,如果命令也删除了本地存储库,就会感到惊讶。任何本地更改都将不可避免地丢失。也许另一个人会认为只有文件会被删除。
请注意。从git 1.8.5.2开始,将执行以下两个命令:
git rm the_submodule
rm -rf .git/modules/the_submodule
正如@Mark Cheverton的答案正确指出的那样,如果不使用第二行,即使现在删除了子模块,残留的.git / modules / the_submodule文件夹也将阻止以后再添加或替换同一子模块。 。另外,正如@VonC所提到的,git rm
它将在子模块上完成大部分工作。
-更新(07/05/2017)-
为了澄清,the_submodule
是项目内部子模块的相对路径。例如,subdir/my_submodule
子模块是否在子目录中subdir
。
如评论和其他答案中正确指出的那样,这两个命令(尽管功能上足以删除子模块)确实在(截至2017年7月)的[submodule "the_submodule"]
部分中留下了痕迹.git/config
,可以使用第三个命令将其删除:
git config -f .git/config --remove-section submodule.the_submodule 2> /dev/null
.git/config
。有关删除子模块的完整方法,请参见stackoverflow.com/a/36593218/1562138。
git init && git submodule add <repository> && git rm <name>
留下.git/config
条目和.git/modules/<name>
目录及其内容。也许您没有在删除子模块之前对其进行初始化?
该问题的大多数答案已经过时,不完整或不必要地复杂。
使用git 1.7.8或更高版本克隆的子模块将在本地存储库中最多保留四条自身痕迹。下面的三个命令给出了删除这四个跟踪的过程:
# Remove the submodule entry from .git/config
git submodule deinit -f path/to/submodule
# Remove the submodule directory from the superproject's .git/modules directory
rm -rf .git/modules/path/to/submodule
# Remove the entry in .gitmodules and remove the submodule directory located at path/to/submodule
git rm -f path/to/submodule
简单步骤
git config -f .git/config --remove-section submodule.$submodulename
git config -f .gitmodules --remove-section submodule.$submodulename
git rm --cached $submodulepath
rm -rf $submodulepath
rm -rf .git/modules/$submodulename
请注意: $submodulepath
不包含前导或尾部斜杠。
背景
当您这样做时git submodule add
,它只会将其添加到.gitmodules
,但一旦您git submodule init
添加,它就会添加到.git/config
。
因此,如果您希望删除模块,但是能够快速还原它们,请执行以下操作:
git rm --cached $submodulepath
git config -f .git/config --remove-section submodule.$submodulepath
这是一个好主意,做git rebase HEAD
第一,git commit
在最后,如果你把这个脚本。
for dir in directory/*; do git rm --cached $dir; done
。
git config -f .git/config -l | cut -d'=' -f1 | grep "submodule.$MODPATH" | sed 's/^submodule\.//' | sed 's/\.url$//'
看起来您必须真正做到这一点,以防万一有什么git submodule | grep -v '^+' | cut -d' ' -f3
git submodule | grep '^+' | cut -d' ' -f2
submodulename
在双引号中添加"submodulename"
..引用.git/config
文件
除了建议之外,我还必须rm -Rf .git/modules/path/to/submodule
能够添加具有相同名称的新子模块(在我的情况下,我正在用原始子模块替换叉子)
要删除使用以下方式添加的子模块:
git submodule add blah@blah.com:repos/blah.git lib/blah
跑:
git rm lib/blah
而已。
对于旧版本的git(大约1.8.5),请使用:
git submodule deinit lib/blah
git rm lib/blah
git config -f .gitmodules --remove-section submodule.lib/blah
git rm
仍然留下东西.git/modules/
。(2.5.4)
git rm
它,则不会;在我的Mac上使用2.5.4进行的快速测试会更新.gitmodules文件,如此处的文档所述:git-scm.com/docs/git-rm#_submodules ...但如果您发现某种形式的平台组合, /版本不会发生这种情况,您可能应该提出一个错误。
git rm
将内容保留在.git/modules/
目录和 .git/config
文件中(ubuntu,git 2.7.4)。其他答案有效100%:stackoverflow.com/a/36593218/4973698
您必须删除.gitmodules
和中的条目,并.git/config
从历史记录中删除模块的目录:
git rm --cached path/to/submodule
如果您要在git的邮件列表上写,也许有人会为您做一个shell脚本。
您可以使用别名来自动化其他人提供的解决方案:
[alias]
rms = "!f(){ git rm --cached \"$1\";rm -r \"$1\";git config -f .gitmodules --remove-section \"submodule.$1\";git config -f .git/config --remove-section \"submodule.$1\";git add .gitmodules; }; f"
将其放在您的git配置中,然后您可以执行以下操作: git rms path/to/submodule
git clone https://github.com/hilbix/empty.git; cd empty; git submodule add https://github.com/hilbix/empty.git one; git mv one two; git rms two
。第二:您必须从正确的路径执行此操作。 git
别名应该在工作树中的任何地方都可以工作(或正常失败)。第三:git config -f .git/config
在子模块中失败,.git
通常在那里有一个文件。
总之,这是您应该做的:
设置path_to_submodule
var(不带斜杠):
path_to_submodule=path/to/submodule
从.gitmodules文件中删除相关行:
git config -f .gitmodules --remove-section submodule.$path_to_submodule
从.git / config中删除相关部分
git config -f .git/config --remove-section submodule.$path_to_submodule
取消登台并仅从索引中删除$ path_to_submodule(以防止丢失信息)
git rm --cached $path_to_submodule
跟踪对.gitmodules所做的更改
git add .gitmodules
提交超级项目
git commit -m "Remove submodule submodule_name"
删除现在未跟踪的子模块文件
rm -rf $path_to_submodule
rm -rf .git/modules/$path_to_submodule
git submodule update
。如果子模块的路径未正确更新(git引发错误),请将其删除:rm -rf .git/modules/<submodule> && rm -rf <submodule> && git submodule update
如果由于添加,提交并推送了已经是Git存储库(包含)的文件夹而意外添加了子模块.git
,则将没有.gitmodules
文件可编辑,也没有任何内容.git/config
。在这种情况下,您需要做的是:
git rm --cached subfolder
git add subfolder
git commit -m "Enter message here"
git push
FWIW,.git
在执行此操作之前,我还删除了该文件夹git add
。
我发现deinit
对我有用的作品:
git submodule deinit <submodule-name>
git rm <submodule-name>
从git docs:
取消初始化
取消注册给定的子模块,即
submodule.$name
从.git / config中删除整个部分及其工作树。
git commit
在工作目录dir modified .gitmodules
和中进行阶段性更改deleted <submodule-path>
。
在尝试了该站点上的所有不同答案之后,我得出了以下解决方案:
#!/bin/sh
path="$1"
if [ ! -f "$path/.git" ]; then
echo "$path is no valid git submodule"
exit 1
fi
git submodule deinit -f $path &&
git rm --cached $path &&
rm -rf .git/modules/$path &&
rm -rf $path &&
git reset HEAD .gitmodules &&
git config -f .gitmodules --remove-section submodule.$path
这将还原与添加子模块之前完全相同的状态。您可以立即再次添加子模块,此处的大多数答案都无法实现。
git submodule add $giturl test
aboveScript test
这样就使您可以进行干净的签出,而无需更改任何提交。
经过测试:
$ git --version
git version 1.9.3 (Apple Git-50)
git rm --cached $path
then rm -rf $path
代替git rm -r $path
?
git submodule add https://github.com/hilbix/empty.git 'dangerous .. submodule'
- >当您尝试删除“危险..子模块”你的脚本,这将rm -rf ..
是最有可能不是你想要的..
我目前在2012年12月的工作(结合了以下大多数答案):
oldPath="vendor/example"
git config -f .git/config --remove-section "submodule.${oldPath}"
git config -f .gitmodules --remove-section "submodule.${oldPath}"
git rm --cached "${oldPath}"
rm -rf "${oldPath}" ## remove src (optional)
rm -rf ".git/modules/${oldPath}" ## cleanup gitdir (optional housekeeping)
git add .gitmodules
git commit -m "Removed ${oldPath}"
这是我所做的:
1.)从.gitmodules文件中删除相关部分。您可以使用以下命令:
git config -f .gitmodules --remove-section "submodule.submodule_name"
2.)进行.gitmodules
更改
git add .gitmodules
3.)从中删除相关部分.git/config
。您可以使用以下命令:
git submodule deinit -f "submodule_name"
4.)删除gitlink(不带斜杠):
git rm --cached path_to_submodule
5.)清理.git/modules
:
rm -rf .git/modules/path_to_submodule
6.)提交:
git commit -m "Removed submodule <name>"
7.)删除现在未跟踪的子模块文件
rm -rf path_to_submodule
fatal: no submodule mapping found in .gitmodules for path 'submodule_name'
步骤1)的步骤3。但是,这两个步骤都是必需的。(git v2.8.2)
我最近发现了一个git项目,其中包含许多与git相关的有用命令:https : //github.com/visionmedia/git-extras
安装并输入:
git-delete-submodule submodule
然后事情就完成了。子模块目录将从您的存储库中删除,并且仍然存在于您的文件系统中。然后,您可以像这样提交更改:git commit -am "Remove the submodule"
。
git delete-submodule
,视git-extras
需要在工作路径中。另请注意,我建议不要使用它git-extras
,因为它的许多部分都非常容易出错和危险。IE git-delete-submodule
可能会删除下面的错误路径.git/modules/*
,因为它假定模块和路径是相同的(通常情况并非如此),并且如果尝试删除子模块中的子模块,则它无法正常工作。 git-extras
可能有99%的帮助,但是如果使用它完全出错,请不要抱怨。 你被警告了!
我必须将John Douthat的步骤进一步向前移动,cd
进入子模块的目录,然后删除Git存储库:
cd submodule
rm -fr .git
然后,我可以将文件提交为父Git存储库的一部分,而无需旧引用子模块。
git rm --cache
步骤时避免出现“致命的:不是git仓库:”错误。
这是我认为必要或有用的4个步骤(首先是重要的步骤):
git rm -f the_submodule
rm -rf .git/modules/the_submodule
git config -f .git/config --remove-section submodule.the_submodule
git commit -m "..."
理论上,git rm
在第1步中应注意这一点。希望OP问题的第二部分可以在一天之内得到肯定的回答(可以在一个命令中完成)。
但是从2017年7月开始,必须删除第2步.git/modules/
,否则您将无法再添加子模块。
正如tinlyx的回答所指出的那样,您可能可以摆脱git 1.8.5+的上述两个步骤,因为所有git submodule
命令似乎都可以使用。
步骤3删除以下部分 the_submodule
文件.git/config
。为了完整起见,应该这样做。(该条目可能会导致较旧的git版本出现问题,但我没有要测试的版本)。
为此,大多数答案建议使用git submodule deinit
。我发现它更明确,使用起来也更容易混淆git config -f .git/config --remove-section
。根据git-submodule文档,git deinit
:
注销给定的子模块......如果你真的想从库中删除一个子模块,并承诺在使用的git-RM [1] ,而不是。
最后但并非最不重要的一点是,如果您不这样做 git commit
,则可能会/可能会在执行时出错git submodule summary
(自git 2.7起):
fatal: Not a git repository: 'the_submodule/.git'
* the_submodule 73f0d1d...0000000:
这与执行步骤2还是3无关。
project dir: ~/foo_project/
submodule: ~/foo_project/lib/asubmodule
- - - - - - - - - - - - - - - - - - - - - - - - -
run:
1. cd ~/foo_project
2. git rm lib/asubmodule &&
rm .git/modules/lib/asubmodule &&
git submodule lib/asubmodule deinit --recursive --force
我刚刚找到了.submodule(忘记确切名称)隐藏文件,它有一个列表...您可以这样单独删除它们。我只有一个,所以删除了它。很简单,但是可能会使Git混乱,因为我不知道子模块是否有任何附件。到目前为止,除了libetpan常见的升级问题外,似乎还可以,但是(希望如此)无关。
注意到没有人发布手动擦除,因此添加了
.gitmodules
在git 2.17及更高版本中,它只是:
git submodule deinit -f {module_name}
git add {module_name}
git commit
git 2.17.1
没有用git 2.20.1
。但是,使用git rm
而不是git add
同时适用于两者。注意:如果东西干净,-f
则不需要。如果要防止意外的数据丢失,请切勿将选项与一起使用git
。还要注意,这留.git/modules/{module_name}
在原地。 最佳做法是将其保留在该位置,因为git
如果由于此原因而阻塞某些东西,则打印正确的(!)有助于继续操作。
为了读者的利益,这里尝试对它进行总结,并逐步指导如何在无法正常工作的情况下进行操作。以下是测试和安全的方式为git
版本2.17
及以上摆脱子模块:
submodule="path/to/sub" # no trailing slash!
git submodule deinit -- "$submodule"
git rm -- "$submodule"
2.20.1
和Ubuntu 18.04上进行了测试2.17.1
。"$submodule"
只是为了强调名称的位置,并且必须注意空格等"$submodule"
用Windows方式正确指定子模块的路径。(我不是Windows)警告!
切勿
.git
自己触摸目录的内部! 内部编辑.git
进入黑暗面。不惜一切代价远离!是的,您可以
git
为此负责,因为git
过去缺少许多方便的东西。就像重新删除子模块的正确方法一样。我认为的文档中有一个非常危险的部分
git submodule
。建议您删除$GIT_DIR/modules/<name>/
自己。 以我的理解,这不仅是错误的,而且是非常危险的,并且在将来引起了很多头痛! 见下文。
注意
git module deinit
是与
git module init
但
git submodule deinit -- module
git rm -- module
也与之相反
git submodule add -- URL module
git submodule update --init --recursive -- module
因为某些命令基本上需要做的不仅仅是一件事情:
git submodule deinit -- module
.git/config
git rm
.gitmodules
git submodule add
.git/modules/NAME/
git submodule init
,所以更新.git/config
git submodule update
,因此,非递归地检出模块.gitmodules
git submodule update --init --recursive -- module
这不能完全对称,因为使其严格对称没有太大意义。根本不需要两个以上的命令。另外,“拉入数据”是隐式的,因为您需要它,但不会删除缓存的信息,因为根本不需要这样做,并且可能会擦除珍贵的数据。
这确实使新手感到困惑,但基本上是一件好事: git
只做明显的事情,做对了,甚至不尝试做更多的事情。 git
是一种工具,必须做得可靠,而不仅仅是另一个“ Eierlegende Wollmilchsau”(“ Eierlegende Wollmilchsau”对我来说是“瑞士军刀的某种邪恶版本”)。
所以我理解人们的抱怨,说:“为什么不git
为我做明显的事情”。这是因为这里的“明显”取决于观点。在每种情况下的可靠性都更为重要。因此,在所有可能的技术情况下,通常对您而言显而易见的事情并不是正确的选择。请记住:AFAICS git
遵循技术路线,而不是社会路线。(因此,聪明的名字是:git)
上面的命令可能由于以下原因而失败:
git
太老了。然后使用更新的git
。(请参阅下面的方法。)git clean
某种意义上说,您的子模块不干净。然后,首先使用该命令清理您的子模块。(见下文。)git
。然后,您处于阴暗面,事情变得丑陋而复杂。(也许使用另一台计算机对其进行了修复。)git
高级用户。)可能的修复方法如下。
git
如果你的机器太旧,没有submodule deinit
在你的git
。如果您不想(或可以)更新您的计算机git
,则只需使用另一台更新的计算机即可git
! git
是完全分布式的,因此您可以使用另一个git
来完成工作:
workhorse:~/path/to/worktree$ git status --porcelain
一定不要输出任何东西!如果是这样,请先清理东西!workhorse:~/path/to/worktree$ ssh account@othermachine
othermachine:~$ git clone --recursive me@workhorse path/to/worktree/.git TMPWORK && cd TMPWORK
othermachine:~/TMPWORK$ git commit . -m . && exit
workhorse:~/path/to/worktree$ git fetch account@othermachine:TMPWORK/.git
workhorse:~/path/to/worktree$ git merge --ff-only FETCH_HEAD
。如果这不起作用,请使用git reset --soft FETCH_HEAD
git status
再次清理。您可以这样做,因为由于第一步,您之前已经将它清理干净。这othermachine
可能是一些虚拟机,或者一些Ubuntu的WSL Windows下,不管。甚至一个chroot
(但我假设您不是root用户,因为如果是root
,则更容易将其更新为较新的版本git
)。
请注意,如果您不能ssh
进入,则有许多方法来运输git
存储库。您可以将工作树复制到某些USB记忆棒(包括.git
目录)上,然后从该记忆棒克隆。克隆副本,只是为了以一种干净的方式再次获取内容。如果您的子模块不能直接从其他计算机访问,则这可能是PITA。但是也有一个解决方案:
git config --add url.NEWURLPREFIX.insteadOf ORIGINALURLPREFIX
您可以使用此乘法,并将其保存到中$HOME/.gitconfig
。就像是
git config --add 'url./mnt/usb/repo/.insteadof' https://github.com/
重写类似的URL
https://github.com/XXX/YYY.git
进入
/mnt/usb/repo/XXX/YYY.git
如果您开始习惯这样的强大git
功能,这很容易。
手动清理是个好习惯,因为这样您可能会发现一些忘记的事情。
git status
并且git clean -ixfd
是你的朋友rm
和deinit
,只要你能。如果您是专业人士-f
,git
则提供的选项(如)会很好。但是当您来到这里时,您可能在该submodule
地区没有那么丰富的经验。因此,最好不要后悔。例:
$ git status --porcelain
M two
$ git submodule deinit two
error: the following file has local modifications:
two
(use --cached to keep the file, or -f to force removal)
fatal: Submodule work tree 'two' contains local modifications; use '-f' to discard them
$ cd two
$ git submodule deinit --all
error: the following file has local modifications:
md5chk
(use --cached to keep the file, or -f to force removal)
fatal: Submodule work tree 'md5chk' contains local modifications; use '-f' to discard them
$ cd md5chk
$ git submodule deinit --all
error: the following file has local modifications:
tino
(use --cached to keep the file, or -f to force removal)
fatal: Submodule work tree 'tino' contains local modifications; use '-f' to discard them
$ cd tino
$ git status --porcelain
?? NEW
$ git clean -i -f -d
Would remove the following item:
NEW
*** Commands ***
1: clean 2: filter by pattern 3: select by numbers 4: ask each
5: quit 6: help
What now> 1
Removing NEW
$ cd ../../..
$ git status --porcelain
$ git submodule deinit two
Cleared directory 'two'
Submodule 'someunusedname' (https://github.com/hilbix/src.git) unregistered for path 'two'
您知道,-f
不需要submodule deinit
。从git clean
某种意义上说,如果一切都干净。另请注意,这git clean -x
不是必需的。 这意味着git submodule deinit
无条件删除被忽略的未跟踪文件。 这通常是您想要的,但不要忘记它。有时,被忽略的文件可能很珍贵,例如缓存的数据需要数小时至数天才能重新计算。
$GIT_DIR/modules/<name>/
?人们可能想删除缓存的存储库,因为他们害怕以后会遇到问题。的确如此,但是遇到“问题”才是解决问题的正确方法!因为修复很容易,而且操作正确,您以后就可以过上幸福的生活。与您自己删除数据相比,这避免了麻烦的麻烦。
例:
mkdir tmptest &&
cd tmptest &&
git init &&
git submodule add https://github.com/hilbix/empty.git two &&
git commit -m . &&
git submodule deinit two &&
git rm two &&
git commit -m . &&
git submodule add https://github.com/hilbix/src.git two
最后一行输出以下错误:
A git directory for 'two' is found locally with remote(s):
origin https://github.com/hilbix/empty.git
If you want to reuse this local git directory instead of cloning again from
https://github.com/hilbix/src.git
use the '--force' option. If the local git directory is not the correct repo
or you are unsure what this means choose another name with the '--name' option.
为什么会出现这个错误?因为.git/modules/two/
以前是从https://github.com/hilbix/empty.git填充的,现在应该从其他地方(即https://github.com/hilbix/src.git)重新填充。如果您从https://github.com/hilbix/empty.git重新填充它,您将看不到它。
现在做什么?好吧,完全按照指示执行!采用--name someunusedname
git submodule add --name someunusedname https://github.com/hilbix/src.git two
.gitmodules
然后看起来像
[submodule "someunusedname"]
path = two
url = https://github.com/hilbix/src.git
ls -1p .git/modules/
给
someunusedname/
two/
将来通过这种方式,您可以向前和向后切换分支/提交,并且由于two/
拥有两个不同的(并且可能不兼容的)上游存储库,因此永远不会再遇到任何麻烦。最好的是:您也将两者都保留在本地缓存。
git
)。但是,如果您删除了缓存的目录,则两个不同的检出都将相互混淆,因为您将不会使用这些--name
选项,对吗?因此,每次执行结帐操作时,您可能不得不.git/modules/<module>/
一次又一次地删除目录。这非常麻烦,并且很难使用git bisect
。
因此,将这个模块目录保留为占位符是非常技术性的原因。建议删除以下内容的人.git/modules/
可能不太了解,或者忘记告诉您这会使强大的功能(git bisect
如果遇到子模块不兼容的情况)几乎无法使用。
上面显示了另一个原因。看看ls
。您在那看到什么?
好吧,模块的第二个变种two/
不在下.git/modules/two/
,它在下.git/modules/someunusedname/
!所以这样的事情git rm $module; rm -f .git/module/$module
是完全错误的!您必须咨询module/.git
或.gitmodules
找到合适的东西删除!
因此,不仅大多数其他答案都陷入了这一危险陷阱,即使是非常受欢迎的git
扩展程序都存在此错误(现已在此处修复)!因此,.git/
如果您不完全了解自己在做什么,最好还是掌握一下目录!
从哲学的角度来看,抹除历史总是错误的! 除了量子力学,像往常一样,但这是完全不同的。
仅供参考,您可能会猜到:hilbix是我的GitHub帐户。
总之,这是您应该做的:
设置path_to_submodule var(不带斜杠):
path_to_submodule=path/to/submodule
从.gitmodules文件中删除相关行:
git config -f .gitmodules --remove-section submodule.$path_to_submodule
从.git / config中删除相关部分
git config -f .git/config --remove-section submodule.$path_to_submodule
取消登台并仅从索引中删除$ path_to_submodule(以防止丢失信息)
git rm --cached $path_to_submodule
跟踪对.gitmodules所做的更改
git add .gitmodules
提交超级项目
git commit -m "Remove submodule submodule_name"
删除现在未跟踪的子模块文件
rm -rf $path_to_submodule
rm -rf .git/modules/$path_to_submodule
另请参阅:替代指南
git rm --cached $path_to_submodule
和git add .gitmodules
不?我在第一个命令上确实出现了错误:fatal: Please stage your changes to .gitmodules or stash them to proceed
因为我已经暂存了对的更改.gitmodules
。做到git add .gitmodules
第一可以解决这个问题。
这很容易:
.gitmodules
git add .gitmodules
git submodule deinit <path to submodule>
git rm <path to submodule>
您将必须手动删除项目上的模块文件。
git submodule deinit <submodule_name>
和git rm <path_to_submodule>
。最后一个命令会自动删除中的条目.gitmodules
。Git 2.17
我创建了一个bash脚本来简化删除过程。它还检查未保存的回购中是否有更改,并要求确认。os x
知道它是否也可以像普通的Linux发行版一样工作已经过测试:
https://gist.github.com/fabifrank/cdc7e67fd194333760b060835ac0172f
如果您需要使用bash脚本在一行命令中执行以下操作:
$ cd /path/to/your/repo && /bin/bash $HOME/remove_submodule.sh /path/to/the/submodule
在$HOME
名为ie 的目录中创建bash脚本文件remove_submodule.sh
:
#!/bin/bash
git config -f .gitmodules --remove-section submodule.$1
git config -f .git/config --remove-section submodule.$1
git rm --cached $1
git add .gitmodules
git commit -m "Remove submodule in $1"
rm -rf $1
rm -rf .git/modules/$1
git push origin $(git rev-parse --abbrev-ref HEAD) --force --quiet
要卸下git
子模块,需要执行以下4个步骤。
.gitmodules
文件中的相应条目 。条目可能如下所述[submodule "path_to_submodule"]
path = path_to_submodule
url = url_path_to_submodule
git add .gitmodules
git rm --cached <path_to_submodule>
。git commit -m "Removed submodule xxx"
并推送。下面需要另外2个步骤才能完全清除本地克隆副本中的子模块。
.git/config
文件中的相应条目。条目可能如下所述[submodule "path_to_submodule"]
url = url_path_to_submodule
rm -rf .git/modules/path_to_submodule
这第五和第六步不会创建任何需要提交的更改。
git submodule deinit
git-scm.com/docs/git-submodule#Documentation/…
git rm modulename
和rm -rf .git/modules/modulename