1
A
回答
1
沒有命令要做到這一點,你需要做手工,因爲tutorial提示:
要刪除你需要一個子模塊:
- 刪除從相關行.gitmodules文件。
- 從.git/config中刪除相關部分。
- 運行git rm --cached path_to_submodule(無結尾斜槓)。
- 提交超級項目。
- 刪除現在未跟蹤的子模塊文件。
但是,您也可以只發出子模塊git submodule deinit
- 但它不會從.gitmodules刪除它。
相關問題
- 1. 爲什麼我的子模塊不能從'.gitmodules'中刪除?
- 2. 如何刪除子模塊
- 3. 無子模塊映射.gitmodules發現
- 4. 從子堆棧中刪除Perl模塊
- 5. 如何從CPAN中刪除模塊?
- 6. 如何刪除git子模塊殘骸?
- 7. 從libxml2中刪除模塊
- 8. 如何從我的github存儲庫中刪除子模塊?
- 9. 如何從當前分支中刪除子模塊
- 10. Python:從子模塊刪除主變量
- 11. 模塊友好的網址,如何從url中刪除模塊?
- 12. 刪除git子模塊
- 13. 路徑'LibTecho'的.gitmodules中找不到子模塊映射
- 14. 在.gitmodules中找不到子模塊映射path.No Submodule present
- 15. .gitmodules和.git/config中指定子模塊的區別?
- 16. 如何在shell腳本中從YML中刪除子塊?
- 17. 從drupal7數據庫中刪除模塊
- 18. McAfee從VBA模塊中刪除代碼
- 19. 從鏈接中刪除庫的模塊
- 20. 如何從子表中刪除從父表中刪除的行?
- 21. 如何從GHCi中的「目標列表」中刪除模塊
- 22. 如何從mongodb碎片中刪除塊
- 23. 添加一個無法從索引中刪除的子模塊
- 24. 無法從Git回購中刪除子模塊
- 25. 在.gitmodules中找不到路徑'paquete/static/lib/cgxp'中的子模塊映射
- 26. Git子模塊不會刪除
- 27. 無法刪除git子模塊
- 28. Git:刪除子模塊錯誤
- 29. 返回刪除的git子模塊
- 30. 刪除後git子模塊不工作
可能重複[如何刪除子模塊?](http://stackoverflow.com/questions/1260748/how-do-i-remove-a-submodule) – qzb