I have a home server which I host all of my Git projects on and I would like to navigate commits and such like GitHub. Are there any web interfaces out there?
2 Answers
See git instaweb for your own instant gitweb instance. Unfortunately, it doesn't work on msysgit.
For a permanent installation, drop gitweb.cgi onto a webserver. Alternatives include cgit (my preference, extremely fast), gitalist. For a complete list, see the git wiki, but the ones I listed are the ones you would want to try.
Comments
you can get github firewall install to host your git repos. Or you could use gitorious
4 Comments
djs
Gitorious is nearly impossible to install. I wouldn't recommend it for a home server unless you have a lot of time on your hands.
Simon
You should state that Gitorious is free whereas Github firewall is not.
Benjol
@Simon, for some definition of free, judging from @djs' comment :)
RyanScottLewis
Gitorious really is near impossible to install. >_< Since I am using Ruby for development, I am going to use instaweb for now until I decide to roll my own web interface using Sinatra (Ruby web application library)