Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know there are plenty of ways to run git on my server, but I quite like the functionality of git with repo browsing - the fact that i can look at previous versions in the web interface.

Now was I able to, I'd use github, but the problem is our source control rules are very strict and we aren't allowed to put files on other servers, even if they are encrypted.

Is there a script that allows us to run a github like interface, or rather one that allows me to browse the revision history of the git project through a web interface?

I'm running a LAMP server, but would consider alternate languages like python, perl etc should nothing in php be available.

interested in both paid and open source softwares

share|improve this question

5 Answers

up vote 15 down vote accepted

The webapp behind Gitorious is open-source. You can have an interface exactly like it from your web server. It doesn't have all the Github bells and whistles but it has source browsing, revision history, commits, etc.

It's rails, which might not be optimal for you, but it's also free :-)

share|improve this answer

Git itself comes with Gitweb, which is a basic browser interface to a Git repository. It allows browsing arbitrary versions of the tree.

You can see Gitweb in action at http://git.kernel.org

share|improve this answer
1  
And here are some instructions to install gitweb: jedi.be/blog/2009/05/06/8-ways-to-share-your-git-repository. Those are the ones I used anyway. – isomorphismes Oct 27 '11 at 21:30

If you are willing to pay you can get your own install of Github. Its call Github Firewall Install and charges on a per user basis (roughly $5000/year for every 20-seat license). All you need to provide is the server to install it on.

share|improve this answer

I know this is a late response, but there is a fabulous PHP application call gitlist. http://gitlist.org/

It works great and looks beautiful.

share|improve this answer

Another late response to say you might also consider using GitLab

share|improve this answer
1  
The coolest and the best! Well... and maybe a bit cheeky for developing a real github-clone and hosting that for free in github ;) Also probably the trickiest piece of software i ever installed on a server - but it makes my eyes twinkle each day when i look at it working :) – Philzen Feb 26 at 19:26

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.