【问题标题】:Bitbucket git push ssh "conq: invalid repository syntax."Bitbucket git push ssh“conq:无效的存储库语法。”
【发布时间】:2017-05-03 23:57:20
【问题描述】:

由于某些原因,我不能 git push 到我的 Bitbucket。它以前可以工作,但现在不能工作了,我不知道为什么。

$ git push ssh://git@bitbucket.org:MyUser/MyGit.git
conq: invalid repository syntax.
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

我生成了一个 ssh-key,将它添加到 gitbucket。确定我的 ssh-agent 如下:

$ ssh-agent /bin/bash
$ ssh-add ~/.ssh/id_rsa
$ ssh-add -l
  #2048 14:41:6f:c9:06:54:88:6c:89:e2:ba:24:6c:36:10:78 /Users/SomeUser/.ssh/id_rsa (RSA)

还检查了我的登录信息

ssh -T git@bitbucket.org
logged in as MyUser.

You can use git or hg to connect to Bitbucket. Shell access is disabled.

详情如下:

$ ssh -T -v git@bitbucket.org
OpenSSH_6.6.1, OpenSSL 1.0.1f 6 Jan 2014
debug1: Reading configuration data /home/vagrant/.ssh/config
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to bitbucket.org [131.103.20.167] port 22.
debug1: Connection established.
debug1: identity file /home/vagrant/.ssh/id_rsa type 1
debug1: identity file /home/vagrant/.ssh/id_rsa-cert type -1
debug1: identity file /home/vagrant/.ssh/id_dsa type -1
debug1: identity file /home/vagrant/.ssh/id_dsa-cert type -1
debug1: identity file /home/vagrant/.ssh/id_ecdsa type -1
debug1: identity file /home/vagrant/.ssh/id_ecdsa-cert type -1
debug1: identity file /home/vagrant/.ssh/id_ed25519 type -1
debug1: identity file /home/vagrant/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.2
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3
debug1: match: OpenSSH_5.3 pat OpenSSH_5* compat 0x0c000000
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<3072<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Server host key: RSA 97:8c:2b:f4:6e:14:6b:5c:3b:zc:va:47:48:74:7c:40
debug1: Host 'bitbucket.org' is known and matches the RSA host key.
debug1: Found key in /home/vagrant/.ssh/known_hosts:1
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /home/vagrant/.ssh/id_rsa
debug1: Remote: Forced command: conq username:MyUser
debug1: Remote: Port forwarding disabled.
debug1: Remote: X11 forwarding disabled.
debug1: Remote: Agent forwarding disabled.
debug1: Remote: Pty allocation disabled.
debug1: Server accepts key: pkalg ssh-rsa blen 279
debug1: Remote: Forced command: conq username:MyUser
debug1: Remote: Port forwarding disabled.
debug1: Remote: X11 forwarding disabled.
debug1: Remote: Agent forwarding disabled.
debug1: Remote: Pty allocation disabled.
debug1: Authentication succeeded (publickey).
Authenticated to bitbucket.org ([131.103.20.167]:22).
debug1: channel 0: new [client-session]
debug1: Requesting no-more-sessions@openssh.com
debug1: Entering interactive session.
debug1: Sending environment.
debug1: Sending env LC_ALL = en_US.UTF-8
debug1: Sending env LANG = en_US.UTF-8
logged in as MyUser.

You can use git or hg to connect to Bitbucket. Shell access is disabled.
debug1: client_input_channel_req: channel 0 rtype exit-status reply 0
debug1: client_input_channel_req: channel 0 rtype eow@openssh.com reply 0
debug1: channel 0: free: client-session, nchannels 1
Transferred: sent 3752, received 3400 bytes, in 0.1 seconds
Bytes per second: sent 61887.6, received 56081.5
debug1: Exit status 0

我的git remote -v

$ git remote -v
MyGit   git@bitbucket-MyGit:MyUser/MyGit (fetch)
MyGit   git@bitbucket-MyGit:MyUser/MyGit (push)

我的~/.ssh/config

Host bitbucket-MyGit
  HostName bitbucket.org
  User git
  IdentityFile /home/vagrant/.ssh/id_rsa
  IdentitiesOnly yes

我环顾四周,但找不到我做错了什么。有什么建议吗?

【问题讨论】:

  • 你在那个 repo 中为你的遥控器设置了什么? git remote -v
  • @Donal 我已进行编辑以包含此信息
  • 我希望你的遥控器看起来像这样:ssh://git@bitbucket.org/MyUser/MyGit.git
  • @Donal 其实你是对的,我只是同时意识到了这一点。浪费这么多时间在这上面。谢谢!

标签: git ssh bitbucket


【解决方案1】:

这是错误的

$ git push ssh://git@bitbucket.org:MyUser/MyGit.git

这是正确的

$ git push ssh://git@bitbucket.org/MyUser/MyGit.git

【讨论】:

  • 奇怪的是,他们在网站上自动生成的 url 的语法不正确 :S :(
  • 他们的文件越来越严重
  • omg - 即将在 Bitbucket 上失去我的 sh**。非常感谢!
  • Bitbucket 上是否有可以复制和粘贴的地方,比如 Github?到处都找不到
  • 解决了我的问题。
猜你喜欢
  • 2016-10-28
  • 1970-01-01
  • 2019-05-12
  • 2013-04-11
  • 2016-02-05
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多