Files
ROCm/scripts/amd/git_submodule_rm.sh
Michael Melesse 5e055a5165 add scripts
2022-12-21 13:13:24 -06:00

10 lines
348 B
Bash

SUBMODULE=third_party/hipify-torch
# Remove the submodule entry from .git/config
git submodule deinit -f $SUBMODULE
# Remove the submodule directory from the superproject's .git/modules directory
rm -rf .git/modules/$SUBMODULE
# Remove the entry in .gitmodules and remove the submodule directory located at path/to/submodule
git rm -f $SUBMODULE