To connect to a server, use the SSH command, along with the server user and IP address
ssh username@12.34.56To generate a SSH key, use the ssh-keygen command
ssh-keygen| #!/bin/bash | |
| wordpress_path="$HOME/Sites/$1" | |
| log_file="$wordpress_path/logs/plugin-updates.txt" | |
| git_commit_title="Plugin Updates" | |
| github_remote="origin" | |
| git_branch="$2" | |
| # helper functions | |
| function fail { |