Guest User

Untitled

a guest
Jan 19th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. ```
  2. ssh-keygen -t rsa -b 4096 -C 'build@travis-ci.org' -f ./deploy_key
  3. travis encrypt-file ./deploy_key --add
  4. ssh-copy-id -i ./deploy_key.pub $USER@$SERVER_IP_ADDRESS -p $SERVER_PORT
  5. echo "deploy_key*" >> .gitignore
  6. git add .
  7. git push $REMOTE $BRANCH
  8. ```
Add Comment
Please, Sign In to add comment