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
As I understand github doesn't allow you to define "true" hooks. Like post-receive. Instead they provide something called a webhook to developers. what you can do with this is issue a web request to any URL specified by you whenever there's a push to your repository.
So what you can do is: setup a webserver on you remote git server and configure github to make an http call to it on post-receive. Whenever github notifies your remote server do a pull on it from github.
See here on how to use webhooks: https://help.github.com/articles/post-receive-hooks
P.S. A true hook mechianism whould have been a possible security vulnerability for github cause it allows you to execute custom code on their servers. So they have made something that does not allow you to execute anything but still allows you to do anything you want.
To illustrate Yervand's answer (upvoted), consider this peligangit as an example of a simple HTTP server (that you can install on your amazon-ec2 instance), which will:
That library would fetch, and then reset the main branch on origin/master.
That is one way to do it. (see githook.py)
def hard_reset_repos(self):
self.server.source_repo.fetch([self.server.source_repo.origin])
self.server.source_repo.reset(['--hard', self.server.source_repo.originMaster])