2012-09-24 22:45:36 +00:00
|
|
|
#
|
|
|
|
# Removes a Git submodule.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2017-07-06 23:01:26 +00:00
|
|
|
# function git-submodule-remove {
|
|
|
|
|
2012-09-30 19:30:18 +00:00
|
|
|
if ! is-true "$(git rev-parse --is-inside-work-tree 2> /dev/null)"; then
|
|
|
|
print "$0: not a repository work tree: $PWD" >&2
|
2012-09-24 22:45:36 +00:00
|
|
|
return 1
|
2012-09-30 19:30:18 +00:00
|
|
|
elif [[ "$PWD" != "$(git-root)" ]]; then
|
|
|
|
print "$0: must be run from the root of the work tree" >&2
|
|
|
|
return 1
|
|
|
|
elif ! git config --file .gitmodules --get "submodule.${1}.path" &>/dev/null; then
|
2012-09-24 22:45:36 +00:00
|
|
|
print "$0: submodule not found: $1" >&2
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
git config --file "$(git-dir)/config" --remove-section "submodule.${1}" &>/dev/null
|
|
|
|
git config --file "$(git-root)/.gitmodules" --remove-section "submodule.${1}" &>/dev/null
|
|
|
|
git add .gitmodules
|
|
|
|
|
|
|
|
git rm --cached -rf "${1}"
|
|
|
|
rm -rf "${1}"
|
|
|
|
rm -rf "$(git-dir)/modules/${1}"
|
|
|
|
|
|
|
|
return 0
|
2017-07-06 23:01:26 +00:00
|
|
|
|
|
|
|
# }
|