Skip to content

Instantly share code, notes, and snippets.

@mattmc3
Created July 26, 2019 16:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattmc3/46894d85cf146db7dca71e0160bf3eff to your computer and use it in GitHub Desktop.
Save mattmc3/46894d85cf146db7dca71e0160bf3eff to your computer and use it in GitHub Desktop.
Git remove submodule
# https://stackoverflow.com/questions/1260748/how-do-i-remove-a-submodule/36593218#36593218
# Remove the submodule entry from .git/config
git submodule deinit -f path/to/submodule
# Remove the submodule directory from the superproject's .git/modules directory
rm -rf .git/modules/path/to/submodule
# Remove the entry in .gitmodules and remove the submodule directory located at path/to/submodule
git rm -f path/to/submodule
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment