Is it possible to have multiple Git Submodules to have the same name but with different path?
- I want to have the same name because they do slightly different, but essentially the same thing.
- I am able to recognize what does what, when I know the path of the submodules.
EDIT
Example:
mkdir Temp
cd Temp || exit
git init
git submodule add --force --name "Student" https://github.com/eirslett/test-git-repo.git "Student"
mkdir Temp2
cd Temp2 || exit
git submodule add --force --name "Student" https://github.com/thockin/test.git "Student"
This only creates the following inside .gitmodules
[submodule "Student"]
path = Temp2/Student
url = https://github.com/thockin/test.git