赞
踩
实验有效,这里删除了两个 submodule。
- mkdir tmp1 && cd tmp1 && git clone --recursive ssh://git@aaa.bbb.ccc.git \
- && cd ccc/ && git checkout -b abranch_01 \
- && git submodule deinit -f XXXX \
- && git submodule deinit -f YYYY \
- && git rm --cache XXXX \
- && git rm --cache YYYY \
- && rm -rf XXXX \
- && rm -rf YYYY \
- && rm -rf .git/modules/XXXX \
- && rm -rf .git/modules/YYYY \
-
- #rm .gitmodules
- vim .gitmodules
- //删除.gitmodules 中与本module 相关的信息
-
- vim .git/config
-
-
- git add .
- git status
- git commit -m "del submodules XXXX and YYYY"
- git log -1
- git push origin abranch_01
验证方法,当重新git clone 项目(先不加 --recursive 选项)后,
- git checkout abranch_01
-
- git submodule init
-
- git submodule update
之后,
ls .git/module 文件夹已经不存在
XXXX/ 与 YYYY/ 文件夹也不存在
这是就可以merge 进 master 中了。
其中,如果项目只有一个submodule,那么,删除 submodule 后,.gitmodules 中的内容变为空,可以直接删除 .gitmodules 整个文件: rm .gitmodules
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。