git push的时候出现fatal: I don‘t handle protocol ‘https‘怎么解决

问题说明

在把本地的代码往远程仓库push的时候Git提示

$ git push origin 远程分支名
$ fatal: I don't handle protocol 'https'

解决方法

删除原有的的Git仓库地址,重新添加你自己仓库的 url 即可

$ git remote rm origin
$ git remote add origin yourURL

 
参考:

https://segmentfault.com/a/1190000010727964

猜你喜欢

转载自blog.csdn.net/weixin_43901865/article/details/113541783
今日推荐