What are the risks and precaution steps when installing git server on debian VPS (openvz + direct admin) ? How to install git server properly in such environment ?

I would like to use git server (such as http://git-scm.com/) to manage source code version control centrally.

link|improve this question

80% accept rate
Rather than apt-get what you need and getting possibly incompatible versions of libs in your /usr/local tree, I would recommend recompiling everything you need for git in a dedicated directory: github.com/VonC/compileEverything – VonC Oct 16 '11 at 9:11
feedback

1 Answer

up vote 3 down vote accepted

GIT alone is usually not sufficient to handle a bunch of repository with different ACLs. Take a look at third-party solutions like Gitosis or Gitolite.

http://blog.philippklaus.de/2011/06/install-gitosis-on-debian-squeeze/

On our development server we use Debian Squeeze with gitosis+redmine (apt-get install gitosis redmine).

You can also use a more comprehensive solution like Gitorius, but isn't so easy to install.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.