Pablo Fernandez
Pablo Fernandez

Reputation: 287400

Does Git work in Windows?

I work on Linux all the time and I'm clueless about Windows, not even having a Windows box. Is Git nowadays working on Windows? Or am I making problems for my Windows pals by using it?

Upvotes: 16

Views: 3995

Answers (8)

Robert Heine
Robert Heine

Reputation: 1838

In the case you are primary using Eclipse as your IDE, there's a fine team provider called EGit, which is pretty easy to install. Check this: http://www.eclipse.org/egit/

Upvotes: 0

Craig McQueen
Craig McQueen

Reputation: 43436

I've heard good things about it, but a sticking point for me (and the Japanese company I work for) is lack of cross-platform Unicode filename support. It depends if that particular feature is important to you.

See Issue 80 in the msysgit bug tracker.

See the What DVCS support Unicode filenames? question I asked about this.

Upvotes: 2

Chris S
Chris S

Reputation: 65426

There's a port of Tortoise for GIT, in version 0.4 so far:

Upvotes: 2

Paul Hedderly
Paul Hedderly

Reputation: 3941

You should also checkout Git-Extensions which adds git commands as shell extensions - works great with msysgit.

Upvotes: 2

webmat
webmat

Reputation: 60566

Yes it does. Check out this screencast at GitCasts.

Upvotes: 2

EfForEffort
EfForEffort

Reputation: 55858

I have had no problems, even with the gui tools (gitk and git gui), using git from Cygwin. The Cygwin people are very conscientious and have a large community to boot.

Upvotes: 6

Christian Lescuyer
Christian Lescuyer

Reputation: 19263

As far as I can tell msysgit works perfectly well under Windows Vista.

This after a whole 2-month experience checking out plugins and applications for Ruby on Rails :-)

Anyway, it was a breeze to install, no problem.

Upvotes: 14

Daniel Spiewak
Daniel Spiewak

Reputation: 55113

It works, but not well. If you Google around a bit, you'll find the port which uses MinGW. The main problems are instability and some very Linux-like tools (gittk). If you really need it though, you should be able to get by.

Upvotes: 0

Related Questions