I wanted to test out pull requests triggering Travis-ci. I figured I’d use an old account to fork, edit and create a pull request for one of my repos. I had set the local config before adding the remote and pulling, but when I tried to push, I got denied based on my global GitHub […]
ssh
SSH Public Key Authentication
rsync -av -e “ssh -p 2222” ~/.ssh/id_dsa.pub root@hostname:.ssh/authorized_keys This adds the public key to the authorized_keys file in your ~/.ssh directory on the remote machine. You can specify a port other than 22 with -p####. You can also copy the ssh key to the clipboard and manually add to authorized_keys on the remote machine while […]