一、问题由来

  今天在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

 

相关文章:

  • 2021-11-14
  • 2022-12-23
  • 2021-08-17
  • 2022-12-23
  • 2022-12-23
  • 2021-08-16
  • 2018-10-11
  • 2022-12-23
猜你喜欢
  • 2021-05-29
  • 2022-12-23
  • 2021-05-31
  • 2021-09-23
  • 2021-08-18
  • 2021-05-19
  • 2022-12-23
相关资源
相似解决方案