How to push to git on EC2
Posted
by
zengr
on Stack Overflow
See other posts from Stack Overflow
or by zengr
Published on 2011-01-08T06:39:59Z
Indexed on
2011/01/08
6:53 UTC
Read the original article
Hit count: 187
git
|amazon-ec2
I am trying to follow this instruction. I have a local git repo and when I do a git push, I need the repo to be pushed to my EC2 instance.
But, in the above tutorial, when I do a git push origin master
, I get Permission denied (publickey)
error because I did not specify the identity file.
Say, I login to EC2 like this: ssh -i my_key.pem [email protected]
So, can I do something similar here to: git -i my_key.pem push origin master
or set the identity file in .git/config
So, how can I set it up?
© Stack Overflow or respective owner