bitbucketでssh接続でgitを使用したいが、git clone
は致命的なエラーを返す。bitbucketでsshでgitを使用するにはどうすればいいですか
私はsshtestという名前のリポジトリを作成しました。正しいsshキーを使用していることを確信しています。次のようなsshコマンドで確認します。
エラーを発生させるためのアイデアはありますか?
$ ssh -T [email protected] # show nothing
$ ssh [email protected]
PTY allocation request failed on channel 0
logged in as username.
You can use git or hg to connect to Bitbucket. Shell access is disabled.
Connection to bitbucket.org closed.
$ git clone [email protected]:username/sshtest.git
Cloning into 'sshtest'...
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
ありがとうございます。 'sshtest'リポジトリは私自身のリポジトリなので、管理者権限があり、設定には" username has already have access "と書かれています。 不思議なことに、ssh認証を使ってsourcetree経由でウィンドウからリポジトリをクローンすることができました。 –