2
我這個文件夾abc/submodule
中有一個子模塊,我用這些命令將其刪除:新的子模塊添加到一個老的子模塊的地方
rm -rf abc/submodule
# remove submodule in .gitmodules
# remove submodule in .git/config
git rm --cached abc/submodule
git push origin master
現在我想新的子模塊添加到同一個地方:
git submodule add <link> abc/submodule
舊子模塊的內容出現而不是新子模塊的內容。我怎樣才能解決這個問題 ?
謝謝先進。