Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

git submodule remove

# Remove the submodule entry from .git/config
git submodule deinit -f path/to/submodule

# Remove the entry in .gitmodules and remove the submodule directory located at path/to/submodule
git rm -f path/to/submodule

# Remove the submodule directory from the superproject's .git/modules directory
rm -rf .git/modules/path/to/submodule

#Remember to commit the remove change!
git commit -m "removed submodule"
Source by gist.github.com #
 
PREVIOUS NEXT
Tagged: #git #submodule #remove
ADD COMMENT
Topic
Name
4+9 =