Last active
March 6, 2019 07:29
-
-
Save dagadbm/f73979a53ca5e45791798bf6600ec30a to your computer and use it in GitHub Desktop.
Git Submodules (how to remove)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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