HstarDoc
HstarDoc copied to clipboard
如何移除Git SubModule
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
# 还原目录
mv a/submodule_tmp a/submodule