I am trying to bed down a development process for our team.
We have 3/4 disperate developers working on our code base at any one time.
We have started using GIT and the idea is that is piece of work is more than a live fix, then they fork the master branch.
Everyone has their own dev environment on the server, and we have one staging environment which should at all times be a copy of the master branch.
Developers develop on their local, then merge back into the master branch, which should then push their changes to the staging server (I want to set up something like this).
If all is approved, then the changes should be copied live. I want to automate this somehow, not sure how exactly. We are using GitHub, so I'm sure there are automated deploy scripts out there.
We only have 1 live server though so it'd be nice if only changed files on the master branch could be deployed to the live server.
Any ideas how to do this?
Is this approach sound?
Any other comments/ warnings?
Is a load balancer necesary to do things like this?