Skip to content

Instantly share code, notes, and snippets.

@NathanKleekamp
Created September 1, 2018 12:00
Show Gist options
  • Save NathanKleekamp/4d3cf87c765c3ef94fa8ee7c0ed76129 to your computer and use it in GitHub Desktop.
Save NathanKleekamp/4d3cf87c765c3ef94fa8ee7c0ed76129 to your computer and use it in GitHub Desktop.
Remove submodule
# 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
# Taken from https://stackoverflow.com/a/36593218
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment