配置仓库时出现的问题
配置github 仓库环境时出现 fatal: protocol 'https' is not supported 出错误
***@LAPTOP-GLG1H7C1 MINGW64 /d/WorkSpace/00_myTest
$ git clone https://github.com/Responsibility/00_myTest.git
Cloning into '00_myTest'...
fatal: protocol 'https' is not supported
提示:这里填写问题的分析:
原因是我配置的是SSH协议的链接,并没有配置Https的链接,所以导致克隆时并不支持https协议。
***@LAPTOP-GLG1H7C1 MINGW64 /d/WorkSpace/00_myTest
$ git clone git@github.com:Responsibility/00_myTest.git
Cloning into '00_myTest'...
warning: You appear to have cloned an empty repository.