我从一个网页上复制并粘贴了一个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'
当前回答
你也可以使用文本编辑器:
将URL粘贴到文本编辑器中 复制刚才从文本编辑器中粘贴的URL 将其粘贴到命令行中
其他回答
与这个问题相关的回答。 错误-致命:我不处理协议'git克隆https' 我试图克隆git项目到我新安装的VScode在我的Linux系统,我复制了整个url从位桶,这就像
Git 克隆 https://abc@bitbucket.org/abcuser/myproject.git
但实际上它运行命令
Git clone git clone https://abc@bitbucket.org/abcuser/myproject.git
在位桶中。 简单地做以下步骤: 1. 输入Ctr + p;这将打开命令框。进入并打开“克隆” 2. 现在只需将git存储库的url粘贴到这里。例如:https://abc@bitbucket.org/abcuser/myproject.git。 3.在输入你的git密码之后,屏幕上就会出现。在这里输入git密码。 4. 完成了。
克隆如下:
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。
请不要从剪贴板上复制。 只需从浏览器的位置/地址栏复制url。
解决方法很简单:
1-复制git路径。例如:http://github.com/yourname/my-git-project.git
2-打开记事本并粘贴它。然后从记事本复制路径。
3-粘贴路径到命令行
这是它。
这主要是由于一些不可见的unicode字符,如果你在终端中按“Ctrl+V”或“Ctrl+Shift+V”就会出现。不要复制和粘贴整个命令。 相反,输入git clone,然后使用右键单击+粘贴复制并粘贴url。