Skip to content

Instantly share code, notes, and snippets.

@talenguyen
Last active August 5, 2019 03:54
Show Gist options
  • Save talenguyen/645f2ac213f23d641153ff5cec7f2d69 to your computer and use it in GitHub Desktop.
Save talenguyen/645f2ac213f23d641153ff5cec7f2d69 to your computer and use it in GitHub Desktop.
Delete a 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment