Skip to content

Instantly share code, notes, and snippets.

@adamheins
Last active October 31, 2015 02:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamheins/5dca378b410ead7bcf9e to your computer and use it in GitHub Desktop.
Save adamheins/5dca378b410ead7bcf9e to your computer and use it in GitHub Desktop.
Script to remove a submodule from a git repository.
# Sourced here:
# https://gist.github.com/2491147
#
# Modified by Adam Heins
#
# Usage: git submodule rm [-c] <path/to/submodule>
# You must be in the root of the git repository to use this command. The -c
# (or --clean) option indicates that the submodule files should also be removed
# from the working tree.
function actual_path() {
if [ [ -z "$1" ] -a [ -d $1 ] ]; then
echo $(cd $1 && test `pwd` = `pwd -P`)
return 0
else
return 1
fi
}
function is_submodule() {
local top_level parent_git module_name
if [ -d "$1" ]; then
cd $1
else
return 1
fi
# Find the root of this git repo, then check if its parent dir is also a repo
top_level="$(git rev-parse --show-toplevel)"
if [ ! actual_path $toplevel ]; then
top_level="$(cd $top_level && pwd -P)"
fi
module_name="$(basename "$top_level")"
parent_git="$(cd "$top_level/.." && git rev-parse --show-toplevel 2> /dev/null)"
if [[ -n $parent_git ]]; then
return 0
else
return 1
fi
}
function is_gitroot() {
if [ "$(pwd -P)" = "$(git rev-parse --show-toplevel)" ]; then
return 0
else
return 1
fi
}
function remove_submodule() {
local module clean
if [[ "$1" == "-c" || "$1" == "--clean" ]]; then
module="$2"
clean=1
else
module="$1"
[[ "$2" == "-c" || "$2" == "--clean" ]] && clean=1
fi
# Check that the path is valid
if [ ! -d "$module" ]; then
echo "usage: git submodule rm [-c] path"
return 1
fi
# then check whether we're at git root
if is_gitroot; then
# finally check whether the given path is a submodule
if $(is_submodule "${module}"); then
# using ${1%/} to remove trailing slashes
git config -f .gitmodules --remove-section submodule.${module%/}
git config -f .git/config --remove-section submodule.${module%/}
git add .gitmodules
git rm --cached ${module%/}
[[ $clean == 1 ]] && rm -r "$module"
git status
else
echo "git submodule rm is not recursive, aborting."
fi
else
echo "You need to run this command from the toplevel of the working tree."
fi
}
function git() {
if [[ $argv[1] == 'submodule' && $argv[2] == 'rm' ]]; then
remove_submodule $argv[3,-1]
else
command git "$@";
fi;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment