I'm working deploying rails applications.
I setup Gitosis on my server. Git user is up and I'm already have 'deploy' user on the server! I was 'git clone' to my local machine from the deploy user on the server. After setting up Gitosis, I'm also able to 'git clone' from the server(git user).
What I want is to 'git clone' from 'git clone' inside the server from 'git' user to 'deploy' user!
and here the problem in a picture: http://bit.ly/90Spxg
I'm already know that this issue is in ssh permission etc. because when I try to 'git clone' on deploy user I got
Initialized empty Git repository in /home/deploy/some_folder/.git/
The authenticity of host '[178.xx.xx.xx]:30000 ([178.xx.xx.xx]:30000)' can't be established.
RSA key fingerprint is dc:f3:53:35:xx:xx:xx:f7:62:4c:e3:68:7e:70:46:cb.
Are you sure you want to continue connecting (yes/no)? ( MY ANSWER yes )
Failed to add the host to the list of known hosts (/home/deploy/.ssh/known_hosts).
[email protected]'s password:
Please let me know what I have to do to figure out this issue!
Thanks in advance!