0

I would like to know if there is a solution (open source project or webservice) available that offers a svn or git repository together with an apache server and database. I am searching for such a solution because I would like to get the benefits of developing with a subversion system. On the other side I need a preview of the final result to see what the code looks like on different browsers.

Hope anybody can help me! regards, Markus

2 Answers2

1

You could place your Git repository in the docroot of your Apache. Then you can edit files, commit them and hav at all times a live preview at hand.

Boldewyn
  • 81,211
  • 44
  • 156
  • 212
0

Take a look at git-instaweb. It starts a web server in your git repo, so you can browse the files, and it includes gitweb.cgi so you can quickly get data about your repo.

Stuart
  • 575
  • 1
  • 3
  • 12