2014-04-01 101 views
3

使用GitLab 6.8.2。我可以匿名克隆公共存儲庫嗎?GitLab不能克隆沒有公鑰的公共回購

我在我的用戶名稱空間中標記爲public的回購。 如果沒有保存在GitLab中的公鑰,我無法克隆它。

例如:

> ssh -T [email protected] 
Welcome to GitLab, Known Username! 

當從賬戶中GitLab存儲公鑰做。

但從用戶在做同樣的事情時,沒有任何按鍵和GitLab帳戶我:

> ssh -T [email protected] 
Permission denied (publickey). 

詳細otput:

> ssh -v [email protected] 
OpenSSH_5.9p1 Debian-5ubuntu1.1, OpenSSL 1.0.1 14 Mar 2012 
debug1: Reading configuration data /etc/ssh/ssh_config 
debug1: /etc/ssh/ssh_config line 19: Applying options for * 
debug1: Connecting to git.site.com [...] port 22. 
debug1: Connection established. 
debug1: identity file /home/ubuntu/.ssh/id_rsa type -1 
debug1: identity file /home/ubuntu/.ssh/id_rsa-cert type -1 
debug1: identity file /home/ubuntu/.ssh/id_dsa type -1 
debug1: identity file /home/ubuntu/.ssh/id_dsa-cert type -1 
debug1: identity file /home/ubuntu/.ssh/id_ecdsa type -1 
debug1: identity file /home/ubuntu/.ssh/id_ecdsa-cert type -1 
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.5 
debug1: match: OpenSSH_6.5 pat OpenSSH* 
debug1: Enabling compatibility mode for protocol 2.0 
debug1: Local version string SSH-2.0-OpenSSH_5.9p1 Debian-5ubuntu1.1 
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: sending SSH2_MSG_KEX_ECDH_INIT 
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY 
debug1: Server host key: ECDSA ... 
debug1: Host 'git.site.com' is known and matches the ECDSA host key. 
debug1: Found key in /home/ubuntu/.ssh/known_hosts:1 
debug1: ssh_ecdsa_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: Trying private key: /home/ubuntu/.ssh/id_rsa 
debug1: Trying private key: /home/ubuntu/.ssh/id_dsa 
debug1: Trying private key: /home/ubuntu/.ssh/id_ecdsa 
debug1: No more authentication methods to try. 
Permission denied (publickey). 

簡單地說,它是SSH不要讓非授權的連接被estabilished用[email protected]。我想我應該甚至可以匿名訪問[email protected]和GitLab來手動管理訪問權限。我想這是我的SSH配置錯誤。

如何將public repo作爲匿名方式克隆而不使用公鑰?

回答

4

您可以使用HTTPS而不是SSH在沒有任何驗證的情況下克隆公共存儲庫。
例如:
這裏有一個公共倉庫:https://gitlab.com/0X1A/dotfiles
頁面還具有鏈接克隆使用HTTPS倉庫,這是如下:

git clone https://gitlab.com/0X1A/dotfiles.git

你將不會被要求進行身份驗證。

+1

唯一的遺憾是我無法推送到沒有HTTPS授權的回購。你認爲這可以通過匿名ssh訪問完成嗎? – cadavre