Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a commercial grade Git server product [closed]

Tags:

git

Does anyone know of commercial server product for managing Git repos analogous to FogCreek's Kiln?

If any, it would be nice to get some rundown of some most notable features it boasts.

It does not have to be necessarily commercial software. Commercially supported would do just as fine, but it has to be installable server software, not hosted service.

like image 988
Roland Tepp Avatar asked Jul 21 '10 12:07

Roland Tepp


2 Answers

Gitorious, the software that runs Gitorious.Org is Open Source and can be installed on your own server, and I'm pretty sure if you are willing to pay a decent price, someone would be willing to support it. Shortcut AS, for example, the company which hosts Gitorious.Org and was founded by Gitorious's original author and current lead developer Johan Sørensen, offers commercial support and customized installations both public and private.

And GitHub has a commercially supported product called GitHub:FI (Firewall Install).

like image 163
Jörg W Mittag Avatar answered Sep 27 '22 20:09

Jörg W Mittag


I don't know what does Kiln offer, but there are various tools in various categories:

Code review tool

Equivalent of Rietveld for Subversion, or Mondrian for Perforce.

  • Gerrit, used e.g. in Android development

Git hosting solutions

Like SourceForge, or Google Code, or GitHub.

  • GitHub:FI aka Github Firewall Install, standalone version of GitHub, proprietary (and expensive)
  • Gitorious, in Ruby
  • InDefero, in PHP, meant to be equivalent of Google Code

Git repository management

Includes for example user management, permissions.

  • Gitosis, in Python, requires setuptools
    see Hosting Git repositories, The Easy (and Secure) Way
  • Gitolite, in Perl
    see http://wiki.github.com/sitaramc/gitolite/

See also Interfaces, frontends, and tools page on git wiki

like image 42
Jakub Narębski Avatar answered Sep 27 '22 21:09

Jakub Narębski