What is the set up for having Github automatically push any updates to a remote server?
This is useful for maintaining a codebase on Github, and having a website run off that codebase.
I have my repo on my own computer, this is where I work.
I commit my changes on my local repo, and push them to my Github repo.
I want my Github repo to then push these changes to my remote server.
I've been researching all day, and using the 'hooks' sounds reasonable. Maybe using a 'post-receive' hook on Github which then runs a push command to my remote server.
Any suggestions?