views:

66

answers:

2

I want to host git repos on my server, but still have a nice tool to manage them, such as Beanstalk or Assembla.

Does anyone know of a similar tool which is downloadable (Other than Assembla private)? Security and reliability concerns won't allow for hosted solutions.

+1  A: 

Have you tried gitosis?

Wim Coenen
Not yet, but I'll give it a try. Thanks!
Ronny
+1  A: 

Gitolite is far more advanced than gitosis, and is quite easy to install, directly from your workstation (based on ssh communication with your Git repository server).

It is only for managing complex ACLs though, meaning it has no web front-end, even though you can quickly interface it with GitWeb (which comes with Git).
It also have no integration with Basecamp, Campfire (, ... and so on).

VonC
Thanks, Gitolite looks really powerful.I didn't explicitly write that before, but having a usable front-end is a huge plus. Isn't there any repo manager with a front end?
Ronny
@Ronny: GitWeb is a good start, but for all the other git web interfaces, look here: https://git.wiki.kernel.org/index.php/InterfacesFrontendsAndTools#Web_Interface
VonC