本文主要是介绍source tree clone error:fatal remote error: Repository not found,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
先介绍下背景,新加入一个项目, git 账号也需要变换。在 source tree上克隆代码到本地时总是报下面的错误。git 仓库地址不能正确识别,在本地git bash可以克隆成功,并且修改了所有的有可能的账户为新账户。
在进行source tree切换项目之前,确保自己进行了以下步骤:
git config --replace-all --global user.name "newName"git config --replace-all --global user.email "newEmail@aa.com"
然后添加一个remote user, 如果这个user能搜到项目,并且点击clone后出现上面的错误,请继续往下看:
在source tree上点击tools->options->git
找到git version,选择 embedded, 然后OK. 重新clone,问题就解决了。
PS: 如果切换了embedded还是不行,试试update embedded 然后再重新切回embedded。或者试着点到旁边的mercurial使用embedded。
这个解决方案是从 https://community.atlassian.com/t5/Bitbucket-questions/quot-This-is-not-a-valid-source-path-URL-quot-when-connecting/qaq-p/165949 找到的,如果有兴趣,可以去看看。
这篇关于source tree clone error:fatal remote error: Repository not found的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!