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

I am looking into the creating a repository for work. Github would be perfect, except that, for security reasons, the repo must reside on our internal network.

Is there a github-like project out there that I could use?

Any recommendations?

share|improve this question
Does it have to be Git? Would you consider other DVCS? – pablo Oct 19 '10 at 19:41
2  
possible duplicate of Is there a Github clone that I can run on my own server? – CharlesB May 1 '12 at 10:15

9 Answers

up vote 11 down vote accepted

There are at least three open source software git hosting solutions:

There are also OSS git repositories management tools (but those do not provide web interfaces by themselves):

share|improve this answer
Thanks Jakub, Gitorious looks absolutely perfect. – Mike Williamson Oct 16 '10 at 13:07
Good list. +1. See also blacka.com/david/2010/09/28/hosting-your-own-git-repositories (which might have been your source and provides a bit more details) – VonC Oct 19 '10 at 16:32
@VonC: It was not my source: I didn't know about this article. Thanks for the link! (My source was InterfacesFrontendsAndTools page on Git Wiki) – Jakub NarÄ™bski Oct 19 '10 at 18:44

Don't forget Gitlab I think its written in ruby and almost is like GitHub. (internally it uses gitosis)

It's opensource and in very active developement!

share|improve this answer

There is github:fi, but is not not free...

I have set up my own server managed with gitolite, but another solution would be to set up and use Trac to find more advance feature (bug tracking, wiki, ...) combined with Git integration.

share|improve this answer

How much money you got? Github allows you to run their servers inside your firewall on your own servers.

http://fi.github.com/

share|improve this answer

You could set up your own environment and use GitWeb as a web-based front end. The article "How To: Install and Configure GitWeb" describes one way of doing this.

Also, take a look at Gerrit, which is for code review and project management.

share|improve this answer

SCM-Manager, for 3 SCMs (Git, Mercurial and Subversion repositories). Just Java

share|improve this answer

You can set up your own git server?

Better yet, just pay the 12/mnth that github wants. I have worked with companies that do that....

share|improve this answer

You could also have a look at http://github.com/drcapulet/warehouse (though it's still in beta)

share|improve this answer

hvgotcodes, you missed the part about security reasons where the code can't go offsite? Besides setting up a gitosis server doesn't give you the same "features" that github does in terms of visualization of your repository.

Mike, There isn't really anything that does the full "github experience". Mind you, github DOES provide as others have mentioned a purchasable internal version.

If that's not an option, decide what features of github you REALLY like and cobble together a few tools to do that. The forking on github isn't anything SPECIAL in the git sense. Anyone can do that with a single clone. The other stuff like pull requests could be duplicated. So pick what you like (start small) and just build it yourself.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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