vote up 3 vote down star
2

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.

flag

1  
"Best" in what sense? – David Oct 4 at 16:09
1  
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 at 23:01

6 Answers

vote up 2 vote down check

Try giggle :)

link|flag
vote up 4 vote down

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|flag
Add links and this is a perfect answer. – LiraNuna Oct 5 at 8:34
vote up 2 vote down

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|flag
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 at 16:55
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
vote up 0 vote down

No one recommended gitg?

link|flag
Not in the Ubuntu repos. PIA if anything more than "aptitude install". So I couldn't try it. – becomingGuru Oct 5 at 11:19

Your Answer

Get an OpenID
or

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