I have a strange problem with cloning a git repository from an amazon ec2 server. It works without any problems on one of my computers running ubuntu 12.04, while on another one using 12.10 it gives me an error:
ssh: Could not resolve hostname ec2server: Name or service not known
fatal: The remote end hung up unexpectedly
It's like it is not recognizing my config file. I use the following git command to clone :
sudo git clone ec2server:/var/www/project.git
or
sudo git clone ec2xxx.compute-1.amazonaws.com:/var/www/project.git
The two config files are identical on both computers, inside the ~./ssh with the following content:
Host ec2server
Hostname ec2XXX.compute-1.amazonaws.com
User ubuntu
IdentityFile ~/.ssh/mykey.pem
If I substitute the ec2server with the actual address I get the following error:
Cloning into 'project'...
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
Thanks in advance.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…