Robert Hurst
Robert Hurst

Reputation: 9092

Can't find a decent git gui for windows. Anyone know of one?

I'm running win7 and need a good git client with a GUI. I like bash but it feels clunky in windows. the GUI that comes with the windows package at git's website is missing a lot of stuff too. I'm considering switching to Ubuntu and using Gedit + git instead. What should I do? stay in windows and use Aptana or Komodo with another git client, or switch to Debian/Ubuntu and use the tools there?

Upvotes: 7

Views: 2602

Answers (7)

VonC
VonC

Reputation: 1326784

You can find all the exisiting Git FrontEnd GUI in this page.

MSysGit just released a "Cheetah" edition, which should be on par with a TorToiseSVN.
Waiting for Cheetah full integration, TortoiseGit is already available

TortoiseGit Context menu

The Eclipse Egit plugin also makes progress. (see its wiki)

Egit


For all those tools, I manage just fine with Git on Windows.

Upvotes: 7

Nathan Stretch
Nathan Stretch

Reputation: 1038

SourceTree (from Atlassian, which runs BitBucket) was recently released for Windows. I find it suits our needs well. Here's a short review.

Upvotes: 0

Gerard Banasig
Gerard Banasig

Reputation: 1713

A client that I use regularly is msysgit.

Upvotes: 0

codaniel
codaniel

Reputation: 5253

GitHub for Windows came out recently. It manages local repos as well as supports pushing to github.com. I have been playing with it and must say it is fantastic.

Upvotes: 1

Fabian Jakobs
Fabian Jakobs

Reputation: 29163

You should also take a look at

  • QGit (there is also a windows downoad)
  • TortoiseGit (This is a port of TortoiseSvn

Upvotes: 2

slebetman
slebetman

Reputation: 113974

SmartGit is quite good although not fully featured yet. The only thing puting me off it is the lack of "blame". But it looks like they're aiming for full functionality so they'll certainly implement it in the future.

Upvotes: 1

ta.speot.is
ta.speot.is

Reputation: 27214

You can use gitextensions with Visual Studio. Otherwise I believe you're going to need to get acquianted with the command line.

http://code.google.com/p/gitextensions/

Upvotes: 6

Related Questions