我有一個基於Linux的Amazon AMI,它包含一個Git存儲庫。我想git clone
這個存儲庫到我的本地OSX機器(它也安裝了Git)。Git克隆失敗
存儲庫位於/home/ec2-user/my_test_repo
的亞馬遜盒子上。 my_test_repo
目錄的內部是.git
目錄。
在我的OSX機器上,我可以成功通過SSH連接到主機爲ec2-user
的機器,我可以執行大量的bash命令。所以,我知道SSH的作品。
git clone ssh://[email protected]/home/ec2-user/my_test_repo.git
我收到以下錯誤信息:
Cloning into 'my_test_repo'...
Permission denied (publickey,gssapi-keyex,gssapi-with-mic).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
任何想法,我在做什麼錯在這裏然而,當我從我的OSX機器執行它下面的命令不起作用?
請參閱:http://serverfault.com/questions/227804/why-cant-i-ssh-into-my-new-ec2-instance – bryanmac