我正在尝试使用git推送:
git push -u origin --all
这是我的问题:
Fatal: unable to look up https (port 9418) (No such host is known. )
我运行了ping github.com
并获得了IP,但是我不知道该如何处理。
答案 0 :(得分:0)
您使用了错误的远程URL-git://
是Git协议的名称(端口9418),不需要后面跟其他协议名称。
尝试一下:
git remote set-url origin https://anhbui2904@bitbucket.org/anhbui2904/sample_app.git
这会将您的origin
远程URL设置为使用HTTPS。
答案 1 :(得分:0)
如果git remote set-url origin
不起作用,则可以直接编辑
.git / config
文件,并将git://https://
前缀修复为所需的git://或https://