I have 1 git server and few systems(git installed) connected to server. I'm trying to setup a gui based setup for server and clients systems both. I'm have Ubuntu on all systems. Could anyone help me in this regard? Any help would be greatly appreciated....
23 Answers
For a GUI based setup, you may try cgit. Here is a tutorial for setting up cgit in ubuntu.
1WHat is "GUI based setup"? In its core, "git clients" and "git servers" (for real GIT is distributed system, not so much "central server" and "clients" exists unlike in SVN or CVS, but for sure you can treat a GIT repository as the "master one") communicate through the network, so no "GUI" is needed here. What you can do in GUI: you can have GUI to work on your repository (even maybe integrated into your IDE) or some kind of "GUI" (let's say a web based one) where you can examine the content of the repository. If you mean this, you may need (of course you can find more!) gitweb. It's in the Ubuntu's repositories (can be installed with apt-get) and written as perl. It acts a CGI solution. More information:
seems gitorious is the best option
2