我正在尝试将我的一些文件从暂存区域推送到我的存储库。
git remote add origin https://github.com/my_name/filename.git
git push -u origin master
fatal: I don't handle protocol 'https'
我收到了这个致命的错误。
如何解决这个问题?
答案 0 :(得分:39)
根据这两个SO帖子,你很可能在命令的某个地方有特殊字符:
git: fatal: I don't handle protocol 'http'
Git Fetch returns 'fatal: I don't handle protocol https' in windows
重新输入命令,应该缓解问题。