我一直在我没有管理员权限的计算机上通过命令行远程处理项目,运行后git push origin master
出现以下错误消息:
(gnome-ssh-askpass:29241): Gtk-WARNING **: cannot open display:
我的.git/config
文件包含以下内容:
[core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true [remote "origin"] fetch = +refs/heads/*:refs/remotes/origin/* url = https://username@github.com/username/repository.git [branch "master"] remote = origin merge = refs/heads/master
我之前收到403错误。在这里发表评论之后,我将用户名放在远程URL的@符号之前,从那以后,我一直收到Gtk错误。
当我使用登录ssh -X
并尝试推送到计算机时,出现以下错误:
X11 connection rejected because of wrong authentication.
(gnome-ssh-askpass:31922): Gtk-WARNING **: cannot open display:localhost:10.0
如果我将遥控器的网址更改为git@github.com:username/repository.git
,则错误为:
ssh: connect to host github.com port 22: Connection timed out
fatal: The remote end hung up unexpectedly
你知道如何解决这个问题吗?
git push origin master
,所以我不知道该如何运用你的意思?
git@github.com:username/repo.git
或,https://github.com/username/repo.git
但是您同时使用了两者。
ssh -X
,但这也没有帮助。请参阅上面更新的问题。