Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using Git or SVN with a web server

I currently have a site that is in development, it's deployed on a web server, and myself as well as one other developer are actively working on the site. We currently have no version control, periodically we backup the work, but for the most part, we are both just working off the server. I've used both GIT and SVN on projects that are run and compiled locally, but never in a situation where it was deployed on a web server. I'm wondering what the typical setup is. I would like to be able to use SVN or GIT for version control, but also be able to publish from that repository to the live web server. Is there a way this is typically done?

like image 261
user379468 Avatar asked Sep 05 '26 05:09

user379468


2 Answers

Here is a good tutorial on how to do this w/ apache and linux. It has worked out for me and is really quite simple to follow.

http://www.kernel.org/pub/software/scm/git/docs/howto/setup-git-server-over-http.txt

like image 136
g19fanatic Avatar answered Sep 08 '26 02:09

g19fanatic


You would have three checkouts: one for you and your partner, and one for the web server. Whenever you want to deploy, just update the checkout on the web server.

If you want live updates, you could set up a server-side Subversion/Git commit hook that would automatically update the repository for the web server and (if needed) restart the server after every commit (or push, in case of Git). Consult the documentation of the corresponding version control system.

like image 28
Gintautas Miliauskas Avatar answered Sep 08 '26 02:09

Gintautas Miliauskas



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!