Incorrect permissions on ~/.ssh and authorized keys
Created by: brocktimus
I had issues getting the ssh keys to work. In the end the issue was the permissions on the ~/.ssh directory and the ~/.ssh/authorized_keys file were incorrect.
sudo su - git
chmod 700 ~/.ssh
chmod 600 ~/.ssh/authorized_keys
Fixed the issue. I'll have a look later to see if I can figure out where I need to make these changes to fix it myself and submit a pull request.