Skip to content

Instantly share code, notes, and snippets.

@wes-goulet
Created February 20, 2018 18:59
Show Gist options
  • Save wes-goulet/ac3cbb369f7d8988b587a994fe25897a to your computer and use it in GitHub Desktop.
Save wes-goulet/ac3cbb369f7d8988b587a994fe25897a to your computer and use it in GitHub Desktop.
Some commonly used git commands
######################################## Remove all traces of a submodule
# from https://stackoverflow.com/a/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