Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been using Git for a bit now (hosting my own) and would love to have something like GitHub that I could setup for my own repos. I've seen GitWeb, but I just don't like using it all that much. Is there anything for Git that's as slick as Warehouse for SVN?

share|improve this question

closed as not constructive by Bo Persson, gnat, Andrew Barber, Audrius Meškauskas, Łukasz Niemier Mar 3 at 9:48

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

13 Answers

up vote 89 down vote accepted

I don't know about Warehouse, but there are many web interfaces for Git, see "Web Interfaces" section on Interfaces, frontends, and tools wiki page:

  • gitweb, which is developed together with git, and is written in Perl. Works both as CGI script, and legacy mod_perl script. There is repo.or.cz duct tape (soon to be released as Girocco), which together with gitweb make for git hosting interface. I think it most commonly used web interface; it is used for example by kernel.org.
  • cgit is is a fast (caching) and lightweight webinterface written in C. It is used for example by freedesktop.org
  • git-php and ViewGit are git web interfaces written in PHP.

If you are interested in more complete solution to hosting git repositories (like from what I can see Warehouse is), and you need source code (therefore GitHub is out), you can take a look into:

  • repo.or.cz duct tape (soon to be released as Girocco), which is set of shell scripts
  • gitorious, which like GitHub is written in Ruby, and which provides similar functionality
  • InDefero, written in PHP, is a clone of GoogleCode with git, Mercurial and Subversion browser.
  • Atlassian Stash, Commercial (10 User "Starter Licence" available). Written in Java. Provides git repository and user credentials/permissions management, user SSH key management. Can integrate with Jira issues and use Jira user directory.
  • Assembla Repository Manager, Commercial ("Forever Free" 10 User License available). Ships as an OVF virtual machine. Provides git and svn repository and user credentials/permissions management. Can be expensively upgraded at any time into a full Assembla Portfolio installation.

So there are a few solutions to choose from.

share|improve this answer

GitLab. It's a nice open source web interface for git and has features similar to GitHub such as Activities, Issues, Snippets and even a Network Graph(no feature like Pull Request).

Update: GitLab now supports a pull-request like feature called Merge Requests as of version 2.0 which was released on December 22, 2011.

share|improve this answer
2  
gitlab is definitely a favorite of mine. Great answer. – AndrewPK Mar 9 '12 at 19:55
Definitely one of the best open source web interfaces out there if you're used to GitHub's interface. – vinod Jul 25 '12 at 7:47
After struggling with Gitorious, I went with Gitlab, and I am very happy with it. New versions are released every month, so this is a very active project and getting better all the time. – Jimothy Dec 12 '12 at 21:13

Check out gitorious (code), we've used it at a couple of Railscamps and its worked well.

Edit: just saw this: git instaweb more info

share|improve this answer
the instaweb link moved. New link: gitready.com/intermediate/2009/01/13/visualizing-your-repo.html – Scotty Allen Jan 29 '09 at 21:07
we use this at work. its brill – Glycerine Nov 16 '10 at 15:01
instaweb is really sweet in its simplicity. it rocks – sofia Feb 24 '11 at 3:34
1  
git instaweb is a script that runs gitweb. Learned this from @Jakub Narębski and he is a core contributor. – Jaseem Mar 28 '12 at 14:06
1  
@Jimothy I've downloaded the Bitnami Gitorious VM for experimentation and it ended up working out well. I'd suggest you try that. – Michael MacDonald Jan 12 at 4:07
show 2 more comments

As a more general frontend that also include bug-tracking, wiki and so on, I'd suggest Redmine, a forge-like system written in Ruby on Rails. It also includes support for svn, Hg and other VCS. I'm very happy with it.

share|improve this answer
This actually doesn't work. Could you share details how you did? $ git clone 192.168.133.208:8081/redmine/projects/git2/repository<br>; Cloning into 'repository'...<br> fatal: 192.168.133.208:8081/redmine/projects/git2/repository/info/refs not valid: is this a git repository? – Paul Verest Dec 28 '12 at 10:31

Gitalist is also getting there.

share|improve this answer

Gitblit is an open-source, integrated, pure Java Git server, viewer, and repository manager for small workgroups. Its generates mostly simple HTML, like Gitweb, so it definitely falls short in the "slick" category. On the plus side, its simple to install and very easy to configure/maintain.

share|improve this answer

The Git repository for Warehouse claims it works for git too.

http://github.com/entp/warehouse/tree/master

share|improve this answer
1  
Woah... crazy. Not sure how it works though, I added my git repo to Warehouse and I'm getting errors. The logs look like it's still trying to access it as a subversion repo. – Daniel Beardsley Jan 13 '09 at 9:08
Perhaps you need to try the 1.2-git branch off of GitHub? – Pat Notz Jan 13 '09 at 15:20
2  
That project appears to be dead. Latest commit on the repository is 4 years old, latest change in any of the github forks is 2 years old, and the domain pointed to from github is now something unrelated. – qqx Oct 27 '12 at 1:47

GitList is a very smart PHP repo viewer.

share|improve this answer
I just installed it and it's great! – Croo Sep 8 '12 at 18:58

InDefero is a bit hard to install but you can also go the hosted way with 250MB free space and unlimited private/public projects. Only git and Subversion are offered with the hosted offer.

share|improve this answer

There is also LXRng which you can get from http://lxr.linux.no. I use this to browse source code. The nice thing is it does keyword linking, making it easier to navigate through source code. You can browse git repositories too but i am not quite sure if you can view commit messages or diffs of them. You can view the different versions though, when they have been tagged previously.

share|improve this answer

codeBeamer is a web-based Application Lifecycle Management platform with full support for Git.

You can deploy this on any Java-compliant server (Win, Linux, Solaris, etc.) and host your repos and projects for yourself. It comes with commercial support and used by both small teams and global Fortune 500 companies.

For specific questions, please scan through the Knowledge Base.

(Discl. we are the company who develops the product.)

share|improve this answer

all of the above examples are good.

but there's also GLiP (git library in php) http://fimml.at/glip

the features are just for viewing repos, not actually comitting, pushing, pulling, etc. i have a fork of GLiP on github where i added some new features like exporting a zip archive of a given commit/blob and viewing branches (http://github.com/xero/glip)

i use it on my personal git server http://code.xero.nu/

share|improve this answer

Gitblit is quite good and can be deployed very easy via war. Detailed instruction is here http://blog.jelastic.com/2013/03/01/deploy-your-code-faster-gitblit-in-the-cloud/

share|improve this answer

protected by adarshr Jun 27 '12 at 11:10

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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