我从一个网页上复制并粘贴了一个git克隆命令:https://fedorahosted.org/ibus-typing-booster/
我得到了这个:
user@host> git clone http://git.fedorahosted.org/git/ibus-typing-booster.git
Cloning into 'ibus-typing-booster'...
fatal: I don't handle protocol 'http'
我从一个网页上复制并粘贴了一个git克隆命令:https://fedorahosted.org/ibus-typing-booster/
我得到了这个:
user@host> git clone http://git.fedorahosted.org/git/ibus-typing-booster.git
Cloning into 'ibus-typing-booster'...
fatal: I don't handle protocol 'http'
当前回答
这只是发生在我们身上,没有任何空白的问题,并将https:更改为http:修复它…
其他回答
我简单地在克隆和url之间添加了5个“空格”:
git clone https://<PATH>/<TO>/<GIT_REPO>.git
它确实有效!
如果你使用的是Windows,使用“url”语音标记来打开和关闭你的url Git克隆“your-url-here”
克隆如下:
git clone https://github.com/zendframework/ZendSkeletonApplication.git
给错误:
Cloning into 'ZendSkeletonApplication'...
fatal: I don't handle protocol 'https'
修改为:
git clone https://github.com/zendframework/ZendSkeletonApplication
工作完美,或者你可以只是复制url。 我使用的是操作系统windows 10和giitbash。
在Android Studio中:
我删除了git克隆,只保留url,它工作!!
这只是发生在我们身上,没有任何空白的问题,并将https:更改为http:修复它…