我无法向我的存储库添加子模块。我可以签出和签入代码到存储库。
git submodule add https://....git
Cloning into 'C:/code/bitbucket/Repos/...'...
fatal: Authentication failed for 'https:....git/'
fatal: clone of 'https://....git' into submodule path 'C:/code/bitbucket/Repos/...' failed
发布于 2020-09-29 20:35:42
我能够克隆和更新子模块repo。
git submodule add **ssh://**....git
不知道为什么。
https://stackoverflow.com/questions/64125295
复制