Which is the best gui client on Linux for Git.

Update: After checking out all of the GUIs mentioned here,

git cola seems to work well for committing/pushing

gitk seem to work the best for examining history and

giggle is awesome for watching the diffs.

I use command line for committing, web trac interface for viewing history, in a rare occasions, and accept giggle as giggle is what, I think, one needs as a desktop git gui, with occasional git cola and gitk.

link|improve this question

4  
"Best" in what sense? – David Zaslavsky Oct 4 '09 at 16:09
2  
There's also the question of whether you want a gui for browsing history (e.g. gitk) or creating commits (e.g. git-gui, giggle, git cola, qgit...). – Jefromi Oct 4 '09 at 23:01
2  
I think gitg has a cleaner and better interface. – ilius May 29 '11 at 13:58
see also stackoverflow.com/a/323559/210945 – naught101 Apr 28 at 7:51
feedback

16 Answers

up vote 177 down vote accepted

Take a look at "Graphical Interfaces" section of InterfacesFrontendsAndTools page on Git Wiki. There you have mentioned:

  • gitk - graphical history browser, in Tcl/Tk, distributed with Git (usually in gitk package)
  • git gui - graphical commit tool, in Tcl/Tk, distributed with Git (usually in git-gui package)
  • QGit - uses Qt toolkit
  • Giggle - uses GTK+ toolkit
  • git-cola - uses PyQt4
  • gitg - GTK+/GNOME clone of GitX
  • tig - text mode interface for git, is GUI and pager, uses ncurses
link|improve this answer
10  
Add links and this is a perfect answer. – LiraNuna Oct 5 '09 at 8:34
1  
+1 for gitk and git-cola. Without those two, working with git is just painful. Just remember, use the command 'gitk --all' to view all branches of the repository at once. – Evan Plaice Jan 17 at 23:05
feedback

Try giggle :)

link|improve this answer
2  
it seems like giggle doesn't have branch management – user126284 Apr 17 '11 at 18:18
how do you use this with git mergetool? – balupton May 30 '11 at 14:10
You can certainly create branches with giggle... – Syzygy Aug 12 '11 at 6:59
1  
great History tool – Quang Van Nov 20 '11 at 1:12
Seems very buggy and unintuitive, unfortunately. – Tchalvak Dec 27 '11 at 16:54
feedback

No one recommended gitg?

link|improve this answer
Not in the Ubuntu repos. PIA if anything more than "aptitude install". So I couldn't try it. – Lakshman Prasad Oct 5 '09 at 11:19
3  
I'll second the recommendation for gitg. I've been using it for quite a while now and it works great. – Dan Klassen Mar 25 '10 at 18:58
3  
It is in the ubuntu repositories for me... – LiraNuna Mar 26 '10 at 2:47
1  
I found it a little difficult to pull at first. Then I figured out you need to go to the properties, find the remote, fetch it, drag the remote branch label onto the desired branch and then select merge. The branch chart is very nice though. It's missing features like stashing, but I mainly use it for visualizing the branches anyway. – Keyo May 11 '11 at 3:21
I have been using gitg for a while but the version currently in Ubuntu has some obvious bugs. Unstaging doesn't work at all, and reverting always causes an error dialog, even though it actually works. – Ben James Jun 20 '11 at 16:08
show 1 more comment
feedback

There is also SmartGit, it is very newbie friendly.

link|improve this answer
1  
This is by far the best gui I've tried. Better than gitg, far better than giggle. Thanks for sharing. – user126284 Apr 17 '11 at 18:37
It is also my favorite. It is important to note that, to use it for commercial usage or to get support, you have to purchase. It is just free for non-commercial usages. That's why you can prefer gitg for commercial usage. – otuzbesli Dec 5 '11 at 14:54
feedback

Check EGit, the git plugin for Eclipse. It's still in incubation, but it looks promising. You can see how it looks in the user guide. Here are a few screenshots to wet your appetite:

  • Repository Exploring:

    EGit screenshot

  • New files:

    New files to be added

  • Commit Window:

    Commit window

  • History View:

    History View

link|improve this answer
I tried working with this for a full day, and at least with Eclipse Indigo it seemed buggy. Other than that, it was just generally painful to work with. While I appreciate trying to make Eclipse the one-size-fits-all tool for development, the other options posted work better for git. The only exception that makes this nicer is that pulling files won't result in me having to hit f5 on my project to see the new files. – mkuech Apr 22 at 1:21
1  
@dyinman It has been in incubation for quite some time, and the latest version (as of the time of writing this comment) is 1.3, which indicates that it's not very mature yet. However, it can be a valuable option if you prefer to use an integrated development environment and/or Eclipse's comparison feature. – Hosam Aly Apr 24 at 11:04
feedback

Actually there is a GUI client for Git (and I bet you'll never guess it's name), Git-GUI.

If your using a Debian-based distro of Linux (eg. Ubuntu) you can install it by typing this:

sudo apt-get install git-gui

link|improve this answer
feedback

There's a mind-blowing large list of interfaces, including GUIs (36 of them!) and other front-ends here: https://git.wiki.kernel.org/articles/i/n/t/Interfaces,_frontends,_and_tools.html

link|improve this answer
@MostyMostacho fixed – naught101 Apr 23 at 4:45
feedback

As far as I'm aware, there aren't many GUI clients for git on Linux. git-gui is the only one I can think of off the top of my head.

Git Cola also looks interesting, though I haven't personally used it.

Also, depending on who you talk to, some people consider GitHub a git GUI of sorts. I won't argue the point, but I can say from personal experience that it is a useful tool/service.

link|improve this answer
git-cola's interface is similar to git-gui, but it is based on Qt and therefore looks a lot better than the Tk based git-gui (especially on Linux) – IgKh Oct 4 '09 at 16:55
feedback

Another GUI client is qgit. I've only used it for browsing repositories so far, though. Despite from that I found git-gui to be the one I like best.

link|improve this answer
feedback

I can recommend git cola for committing and giggle for examining commits and branches. I also tried Gitg but it seems to be rather unstable.

git cola has frozen on some occasions and seems to be slow on large commits. Large commits are lightning fast on the command line.

link|improve this answer
feedback

For linux you can use SmartGit. Install as Non commercial use download SmartGit

For windows this will be helpful. to download Git extensions

link|improve this answer
feedback

For those who do not like editing the list of commits during "git rebase -i" by hand i can recommend qgrit.
(Qt git rebase --interactive tool)

It allows you to graphically reorder commits and choose actions from a combo box.

For a list of features/screenshots see:
https://github.com/qgrit/qgrit/wiki

This shameless plug was sponsored by the author of qgrit...

link|improve this answer
feedback

gitk + git-gui

git-gui usage: git gui

link|improve this answer
feedback

If you are an Emacs user, magit is a good option although it's more a set of useful keybindings than a GUI proper.

link|improve this answer
feedback

I've decided to limit myself to gitk and git gui (and the command line of course). The reason is that they are powerful enough (I was surprised how complete git gui was) and they run on all platforms, which is often useful.

I have git k aliased to gitk -all

link|improve this answer
feedback

RabbitVCS (with an interface much like TortoiseSVN) supports Git now.

http://www.rabbitvcs.org/

link|improve this answer
feedback

protected by Mat Aug 21 '11 at 16:31

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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