Push local folder to remote server over ssh
After struggling to get the rake task for octopress to deploy I decided to fall back to the command line and use rsync and ssh to push the static website to the server.
To copy the local folder public to webapp/x/ folder on my webserver:
rsync -avz ./public/ user@server:~/webapps/x/
Command Line
Programming
Web
]