SSH 相关问题

  1. ssh: Could not resolve hostname + cron job

需要自动化执行 cron job,脚本主要功能就是 git push 到远程仓库。

解决方法:

在脚本中添加:

    #!/bin/bash

    ## Git
    eval "$(ssh-agent -s)"
    ssh-add ~/.ssh/ssh_key1
    ssh-add ~/.ssh/ssh_key2
    ssh-add -l

    ## Job
    cd ~/repo/blog/
    make publish
    cd ~/repo/gtd/
    make publish
欢迎通过「邮件」或者点击「这里」告诉我你的想法
Welcome to tell me your thoughts via "email" or click "here"