我正在重新初始化我的代表,将代码添加到其中,但是当我按下它时...仍然出现此错误。...
当我寻找解决方案时,我在stackoverflow的一篇文章中看到,起源之后,该空间实际上不是空间,而是一些特殊字符,但是我已经放置了一个用于维护安全的空间,但该错误并没有固定。 .... git remote add origin https://github.com/abdullah-ch/Graphical-User-Interface-in-JAVA.git
git init
git remote add origin https://github.com/abdullah-ch/Graphical-User-Interface-in-JAVA.git
git remote -v 来源[https://github.com/abdullah-ch/Graphical-User-Interface-in-JAVA.git](提取) 来源[https://github.com/abdullah-ch/Graphical-User-Interface-in-JAVA.git](推动)
git add。
git push origin master
//然后我得到这个错误
致命:不支持协议'[https'
我的Java代码没有被推送到我的代表处
答案 0 :(得分:0)
您已经在URL周围放置了方括号,这是无效的语法,并且Git解释了方括号是URL的一部分。因此,推送无效。
您应将URL设置为不包含方括号:
git remote set-url origin https://github.com/abdullah-ch/Graphical-User-Interface-in-JAVA.git
如果执行此操作后仍然遇到此问题,则可能是在全局配置文件中设置了URL。您可以通过运行以下命令查看设置此值的位置:
git config --show-origin --get remote.origin.url
找到包含错误URL的文件(带有方括号的文件),然后对其进行编辑以删除该配置选项。返回存储库后,请尝试再次将原点设置为远程。