我正在尝试通过Azure DevOps中的bash任务克隆私有Bitbucket存储库。这是命令
git clone --branch master https://username:password@bitbucket.org/repo.git
我之前遇到此错误
"fatal: could not read Password for 'https://***@bitbucket.org': terminal prompts disabled"
这就是为什么我在URL中也包含密码以使其正常工作的原因,但是现在我知道了。
fatal: unable to access 'https://bitbucket.org/realogy-abt/apipublishing.git/': Could not resolve host: ***
我尝试使用user.name和email以及远程原始URL设置全局git config,但是没有任何效果。
git config --global user.email "xxx"
git config --global user.name "xxxx"
我正在Azure DevOps的bash任务中尝试此操作。任何帮助,将不胜感激。 编辑添加:同一克隆可与Github存储库无缝协作。