What we're doing here: adding an alias to your .bash_profile.
Posting this because I always forget about it, and I figure it'll be useful for others.
From the terminal:
nano ~/.bash_profile
alias devRemote = “ssh username@XX.XXX.XXX.XXX -i ~/.ssh/private_key” # GoDaddy Cloud
source ~/.bash_profile
Note:
- Replace "devRemote" with whatever your alias is.
- Replace "username@XX.XXX.XXX.XXX" with your Cloud credentials.