我在汇编中使用atom进行编码,并且我正在尝试将我的提交推送到我的git-hub存储库。我下载了git-plus软件包,但每次我都推送我收到这个错误按摩:
"致命人无法读取https://github.com没有此类设备的用户名 或地址"
当我使用终端推动时,它可以工作。
答案 0 :(得分:0)
通过以下命令远程链接您的git:
git remote rm origin和 git remote add origin' git@github.com:username / repo.git'
答案 1 :(得分:0)
尝试为您的存储库添加一个遥控器:
git remote rm origin
git remote add origin 'https://github.com/user/repo.git'
链接中的user
是您的名字,例如: GitHub和repo
是您的存储库的名称。