Skip to content

Instantly share code, notes, and snippets.

@tiendq
Last active November 27, 2018 14:14
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 tiendq/7d9ad469d658d2283c2b4dfebf49860c to your computer and use it in GitHub Desktop.
Save tiendq/7d9ad469d658d2283c2b4dfebf49860c to your computer and use it in GitHub Desktop.
This seems to be a more modern version (copied from https://stackoverflow.com/a/36593218/2066118):
# 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