我从一个网页上复制并粘贴了一个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'
当前回答
使用backspace删除git clone和url之间的任何内容,然后使用空格键在两者之间添加一个干净的空格。就这么简单。
其他回答
你也可以使用文本编辑器:
将URL粘贴到文本编辑器中 复制刚才从文本编辑器中粘贴的URL 将其粘贴到命令行中
我简单地在克隆和url之间添加了5个“空格”:
git clone https://<PATH>/<TO>/<GIT_REPO>.git
它确实有效!
我使用双引号的URL,它工作。就像这样
git clone "http://git.fedorahosted.org/git/ibus-typing-booster.git"
工作. .单引号没有用。必须是双引号。
我复制粘贴了整行git克隆http://....
git克隆和http://..之间的字符。看起来像一个空格,但它是一个特殊的Unicode字符!
简单回答:在移除这个字符并进入一个真实的空间后,它就起作用了!
对于喜欢细节的人:我看到了两种显示ascii字符和特殊unicode字符的方法
Way1: Python
这是真正的台词:
vi t.txt # copy+paste the line
python
open('t.txt').read()
git clone \xe2\x80\x8b\xe2\x80\x8bhttp://...
Way2:更少的
vi t.txt # copy+paste the line
LESSCHARSET=ascii less vi.txt
如果它看起来像git clone <E2><80><8B><E2><80><8B>http://,,那么你复制+粘贴special-unicode-characters。
解决方法很简单:
1-复制git路径。例如:http://github.com/yourname/my-git-project.git
2-打开记事本并粘贴它。然后从记事本复制路径。
3-粘贴路径到命令行
这是它。