我在github上创建了一个仓库,在Windows上的本地目录命令提示符下,键入git clone https仓库的URL字符串,它一直在告诉我远程:找不到存储库。致命:存储库。
请问我该如何解决这个问题?
谢谢。
我已经删除了github上的仓库。我尝试重新创建它,以确保它与本地系统中的文件夹的字母大小写相同。
C:\ Users \ Olaniyi Adeosun \ Desktop \ cashurban> git clone https://github.com/titelecoms/cashurban.git 克隆为“ cashurban” ... 远程:找不到存储库。 致命:找不到存储库“ https://github.com/titelecoms/cashurban.git/”
答案 0 :(得分:1)
如果它是一个私有存储库,则必须在正确的github帐户上登录git才能访问。您可以使用
进行配置git config --global user.name "<username>"
git config --global user.email <your@email.ca>
或删除最后一个参数以读取当前配置。
如果它不起作用,也可能是https连接错误,那么您可以尝试git://
git clone git://github.com/<USER>/<REPO>.git