Files
30-seconds-of-code/git/snippets/delete-submodule.md
2023-05-01 22:28:09 +03:00

686 B

title, type, tags, author, cover, dateModified
title type tags author cover dateModified
Delete a submodule snippet
repository
submodule
chalarangelo silver-flat-screen 2021-04-13T21:10:59+03:00

Deletes a submodule from the repository.

  • Use git submodule deinit -f -- <submodule> to unregister the specified <submodule>.
  • Use rm -rf .git/modules/<submodule> to remove the directory of the submodule.
  • Use git rm -f <submodule> to remove the working tree of the submodule.
git submodule deinit -f -- <submodule>
rm -rf .git/modules/<submodule>
git rm -f <submodule>
git submodule deinit -f -- 30code
rm -rf .git/modules/30code
git rm -f 30code
# Removes the `30code` submodule