tags:

views:

105

answers:

7

Possible Duplicate:
Git gui client for Linux

Does anybody know a good GUI for git on Linux Ubuntu?

+3  A: 

The canonical interface has to be gitk for repository browsing, complemented by git gui for making changes. They are available anywhere and are probably the most fully-featured interfaces, as they are written as part of the git project.

Andrew Aylett
Thanks for your comments. "git cola" also seems nice.
Rafid K. Abdullah
+1  A: 

Giggle is a GNOME-based git front-end, which allows you to browse the history of the repository as well as commit changes. It doesn't have as much support (yet, I assume) for merging or for remote operations, but it does look nicer than git's own tools, using standard platform features.

Andrew Aylett
`sudo apt-get install giggle` to try. Nice one, but it is far far away to command line tools.
takeshin
+2  A: 

I'm using git cola which I'm very glad with. It has quite all in it's GUI.

Moss
+2  A: 

I use qgit it is quite a good GUI for me at least. It is in the default repositories.

Octavian Damiean
+1  A: 

SmartGit is also nice will lot of Git features implemented. http://www.syntevo.com/smartgit/index.html

jln
+1  A: 

gitg is a good one I think. It's a lot like GitX for Mac OS X. tig is an interesting graphical display and interactive repo viewer in the command line. http://jonas.nitro.dk/tig/manual.html#viewer

Bryce
+2  A: 

See Interfaces, Frontends and Tools page on Git Wiki.

Jakub Narębski