我按照
中的一些简单步骤进行了操作address
git clone address
我现在收到此错误
git clone https://github.com/hide_name/pr0-underbar.git repo_underbar
Cloning into 'repo_underbar'...
remote: Repository not found.
fatal: repository 'https://github.com/hide_name/pr0-underbar.git/' not found
我可以做些什么来修复或解决问题?
我查看了我的github页面,存储库肯定在那里。
Google搜索
https://www.google.com/#q=git+clone+says+repository+not+found
这不起作用:
答案 0 :(得分:0)
类似的问题:
即使回购和分支存在并且我在正确的文件夹中,我也多次遇到此错误。今天,我终于明白了。
查看示例:
C:\my-repo1>git clone my-branch1
致命:存储库'my-branch1'不存在
C:\my-repo1>git checkout my-branch1
切换到新的分支“ my-branch1”
分支“ my-branch1”已设置为从“起源”跟踪远程分支“ my-branch1”。
如您所见,我应该使用 checkout 而不是 clone ,因为我已经克隆了它并且我正确地位于本地repo目录中。
这会发生多次,因为克隆和结帐以相同的字母开头,并且您需要获取其他人的代码(获取其存储库的克隆,但它们在相同的存储库中,但在不同的分支中),因此结帐将起作用。 />
显然,克隆分支(而不是repo)没有任何意义,但是我们有时还是会键入它。