Is there some easy way to rename a git submodule directory (other than going through the entire motion of deleting it and re-adding it with a new destination name).
The correct solution is:
mv oldpath ~/another-location git rm oldpath git submodule add submodule-repository-URL newpath
Source: Rename git submodule