首页 > Web开发 > 详细

Git--Git clone时遇到fatal: protocol '??https' is not supported

时间:2020-01-30 16:11:54      阅读:1357      评论:0      收藏:0      [点我收藏+]

一、问题由来

  今天在Windows上学习git clone将远程版本库克隆到本地时的操作不当引起fatal: protocol ‘??https‘ is not supported,是我们在这方面常犯的一个错误。

二、解决办法

stackoverflow上找到了解决方案和原因,其中是这么写到的:

 

You tried to paste it using
CTRL +V
before and it didn’t work so you went ahead and pasted it with classic
Right Click - Paste**.
Sadly whenever you enter CTRL +V on terminal it adds
a hidden ^?
(at least on my machine it encoded like that).
the character that you only appears after you
backspace
(go ahead an try it on git bash).
So your link becomes ^?https://...
which is invalid.

 

在我们使用ctrl + c/v 进行复制粘贴操作,在git bash中没有效果,下意识右键粘贴,但是不幸的是,使用 CTRL +V会在Git Bash 中添加一个隐藏的符号 ^?。所以在git bash中可能出现

 

$ git clone ^?https://github.com/shi-bash-cmd/myweather.git

 

链接前面多了符号,协议变成了^https,肯定不能克隆成功,提示协议不支持。跟linux系统中的复制粘贴不同,在命令行中尽量小心使用ctrl + c/v

三、参考链接

 

https://stackoverflow.com/questions/53988638/git-fatal-protocol-https-is-not-supported

 

Git--Git clone时遇到fatal: protocol '??https' is not supported

原文:https://www.cnblogs.com/shi-win-snoopy/p/12242880.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!