Is there any way to move submodules within your superproject without removing them first and re-adding them ?
Is there any way to move submodules within your superproject without removing them first
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s similar to how you removing a submodule (see How do I remove a submodule?):
git add .gitmodulesmkdir -p new/parentmv -vi old/parent/submodule new/parent/submodulegit rm --cached old/parent/submoduleLooks like this for me afterwards: