I'm trying to make update on submodules by that:
git submodule update --recursive
And the .gitmodules is:
[submodule "test"]
path = test
url = https://[email protected]/test/test.git
Another developer has updated .gitmodules
on develop
branch like that:
[submodule "test"]
path = test
url = [email protected]/test/test.git
I've followed these codes:
git pull origin develop
git checkout develop
git submodule update --recursive
I've checked the .gitmodules
file, it has changed, but it stil ask me the testuser's password. I couldn't understand what have done wrong.
question from:
https://stackoverflow.com/questions/65945721/git-submodule-update-after-pull-a-brach 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…