I was checking out for a rich GUI for Git on Linux. Of late I have started using it a lot and find that even though command-line is very useful, I would still want a GUI at my disposal since I am not still very much aware with the advanced features.

I came across this question on SO before, but I still have to ask this question again, as that question doesn't have my answer

  • I have used git-cola and gitk, but they look half-baked and gitk looks like I am working on some other DE. All the features I require in gitGUI is not in either or them.

  • I tried giggle , but it is more useful for watching diffs

  • I tried QGit, but it is not fully complete.

Now let me tell how I want a foo-Git-GUI to look like:

  • You can have a look at Bzr Explorer , it is highly usable and has many features than many of the above mentioned GUIs

Anyone knows of any Git GUI which looks like the above example I posted above?

link|improve this question

feedback

6 Answers

up vote 9 down vote accepted

I find myself using mainly gitg in combination with the command line for more complicated tasks. Definitely looks pretty: http://trac.novowork.com/gitg/wiki/Screenshots (seems currently offline)

Source repository: http://git.gnome.org/browse/gitg enter image description here enter image description here

link|improve this answer
although it looks good, unfortunately it does almost nothing. :-( – andyczerwonka Jun 22 '11 at 13:02
2  
I wouldn't exactly call staging, line-based staging, committing, branching, tagging, cherry-picking, patching, browsing, showing diffs, etc... "almost nothing". ;-) - At least for me, personally, it covers about 80% of what I typically do in a repo. – Christoph Jun 22 '11 at 14:14
fair enough... I rephrase... "it's useful for local work, but not for remote collaboration" – andyczerwonka Jun 22 '11 at 18:57
Does this project have a website? Looks cool, but hard to find info. – Travis R Nov 2 '11 at 23:38
Hm, the homepage seems to be currently offline. I added a link to the source repository, the only meaningful page I could find (apart from an old github page) – Christoph Nov 3 '11 at 10:01
feedback

I doubt you're going to find what you want if you haven't already. Linux users tend to be quite happy using CLIs so there's not nearly so strong a drive for a huge GUI.

That said, you've somehow missed looking at git-gui. git-gui and gitk are the two that are actually part of the git suite, and they're designed to complement each other - gitk for looking at history and diffs, git-gui for making commits, merging, fetching, pushing...

link|improve this answer
Thanks Jefromi, I can understand that Linux users are happy with cli, but still I find that good GUIs are available for Bazaar but not for GIT. This is why I asked the question – Manish Sinha Jan 26 '10 at 18:35
OTOH git-cola is just too confusing. It may be good, but just too complicated to use. Compare it against Bzr Explorer and see. – Manish Sinha Jan 26 '10 at 18:39
I didn't say anything about git cola. – Jefromi Jan 26 '10 at 18:45
I can't figure out how to launch git-gui. Not in Linux' menu, and terminal "git-gui" does nothing, and "whereis git-gui" shows me a location or two but no suggestions. – Smandoli Apr 7 at 18:18
@Smandoli It's a git command: git gui – Jefromi Apr 7 at 19:24
show 1 more comment
feedback

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

  • New files:

New files to be added

  • Commit Window:

Commit window

  • History View:

History View

link|improve this answer
feedback

git gui is what I always use on Windows. It does just about everything I ever need to do in Git, and the graphical nature is invaluable for getting a good picture of what is going on.

I haven't tried it on Linux, but I doubt it is any worse there.

I think the reason there hasn't been a big push into alternative tools is that git-gui is more than good enough for those who like to use Guis.

link|improve this answer
I can understand that the graphical nature is invaluable, but still needed to lower the entry level barrier. – Manish Sinha Jan 26 '10 at 18:41
1  
Aww! It looks too too bad. vilain.net/talks/git-svn/git-gui.png Anyhow I would continue using this – Manish Sinha Jan 26 '10 at 19:02
feedback

I just started running GitExtensions on Mono and it seems to work pretty well so far (running Ubuntu natty here). I had to install some libraries to get the compiled zip package to run:

  • libmono-winforms2.0-cil for System.Windows.Forms
  • libmono-system-ldap2.0-cil for System.DirectoryServices

    Unfortunately there doesn't seem to be a packaged version for Ubuntu.

link|improve this answer
feedback

Smartgit seems to be pretty feature rich. It allows committing, rebasing, visualizing branch history... It's not open source but is free to use for non-commercial projects.

I installed it by downloading from the site, untarring and running bin/smartgit.sh. There are also ppas like this one that have it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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