I use Subversion via TortoiseSVN but I hear good things about Git.

Are there any similar tools available for Git on Windows?

Feel free to answer with tools which still in early development.

link|improve this question

78% accept rate
feedback

11 Answers

up vote 71 down vote accepted

There is a TortoiseSVN port for GIT: http://code.google.com/p/tortoisegit/

The software installs as shell extension (right-click in Explorer and other file-browsers) and works with sites like GitHub.

I've successfully used it in WindowsXP (x86), Windows Vista (x64) and Windows 7 (x64) environments.

link|improve this answer
1  
I use TortoiseGIT regularly and it's ok, feels a little slower than Tortoise SVN (the explorer window tends to hang for git directories sometimes) but i couldn't find any other problems. – dbemerlin Mar 16 '10 at 15:32
10  
If you're not yet used to git you may want to avoid TortoiseGit and instead use the command line + git-gui + gitk. When I used TortoiseGit, it was a broken attempt at porting TortoiseSVN and you get in trouble when you can't do the normal git things. You may want to check out my comment on other GUI's: stackoverflow.com/questions/83789/… – UncleCJ Apr 20 '10 at 10:51
@UncleCJ +1 for the amazingly simple and effective built-in git-gui! Also, since gitextensions comes with msysgit, it already have git-gui as well. :) – Cawas Jan 24 at 16:45
Avoid TortoiseGit, it does not support stage + using shell extension for version control is a bad idea. – mamu Apr 14 at 13:09
feedback

The git wiki has a comprehensive list of frontends and interfaces.

link|improve this answer
11  
Comprehensive indeed. However, it makes the decision harder at best. – DerMike Aug 2 '11 at 15:02
2  
Hoo boy, yes. At the time I wrote this answer the list was much shorter. – Aristotle Pagaltzis Aug 23 '11 at 0:50
And now this link is broken. – Basilevs Sep 25 '11 at 3:40
Kernel.org is down for now. – Aristotle Pagaltzis Sep 27 '11 at 9:41
1  
Looks like kernel.org is back up, but the wiki portion is still down. The [git homepage](git-scm.com) has an interface tools section which covers the most popular options. – echoback Oct 11 '11 at 20:40
show 1 more comment
feedback

GitExtensions is a GUI, Visual Studio plugin and shell extensions for Git.

link|improve this answer
18  
GitExtensions is definitely the best. The proof is that I find myself forgetting git's command line syntax. I believe if a front end can make you forget the command line syntax, it has done its job. – carleeto Aug 24 '10 at 4:11
feedback

Usually I prefer free and open source tools but there is a commercial GUI for GIT that is really nice SmartGIT, also multiplatform.

For open-source projects the tools is now FREE and for commercial usage it costs up to 60$.

I had bad experiences with other GIT GUIs on Windows, regarding this one I don't have a bad one yet but it was recommended to me by a friend.

link|improve this answer
It is good, and it's getting better - v2.0 is in alpha. – Benjol Nov 29 '10 at 14:13
1  
I've been using it for 3 years, and it keeps getting better. SmartGit is unquestionably the best gui for both Windows and OS X. The only thing it lacks is a key tool for getting and generating keys. As far as I know, no other GUI has the feature either. So I wrote one. – Computer Linguist May 22 '11 at 10:25
By the way, I taught someone who was new to computers to use SmartGit in only a few hours. +1 for simplicity. – Computer Linguist May 22 '11 at 10:28
Disagree about SmartGit being the best on OSX - I know this is about PC clients, but since you mentioned it, I personally prefer Tower Git over SmartGit for ease of use. – Cthutu Feb 21 at 22:37
feedback
  1. git-gui (distributed with Git)
  2. qgit,
  3. git-cola - a highly caffeinated git gui
link|improve this answer
3  
This is quite out of date advise, these are not really the main ones to use now. – corydoras Jan 20 '10 at 23:24
3  
@corydoras do you know what the main ones are now then? – jasondavis Jan 21 '10 at 10:16
3  
While I dont know everyone in the world, I cant comment on what is most popular. However every windows git user I know uses either TortoiseGit or GitExtensions. I have been quite happy with GitExtensions, not sure about TortoiseGit. I would be quite interested to see what is the best answer more than a year on from when this question was first asked. – corydoras Jan 22 '10 at 4:05
feedback

There's egit for Eclipse.

link|improve this answer
feedback

msysgit - Git for Windows

link|improve this answer
2  
++ this. This gives you basic git on a Windows box, and it works very well for me. gitk, included, is more than useful enough to manage a project. – Kumba Jul 6 '11 at 3:52
gitk +1 ...accompanied with the Git Gui. Not that bad. – pepr Apr 25 at 16:45
feedback

The official GitHub for Windows has now been released.

link|improve this answer
feedback

I've been using smartgit for about a month. Certainly worth taking a look at if you prefer a gui.

http://www.syntevo.com/smartgit/index.html

link|improve this answer
1  
You should have mentioned it's non-free. – Lohoris Apr 17 at 13:58
feedback

GitCheetah (although it's early days). And the default tools that ship with git.

link|improve this answer
Years later, the git-cheetah web site still says: TortoiseCVS (and later TortoiseSVN) set the scene for convenient source code management on Windows. Not to be left behind, git has the beginnings of a clone, called git-cheetah. (Note: in the meantime, people have started their own extensions, since duplicating efforts is so much fun.) This page is about setting up git-cheetah as a submodule of msysGit and working with it on other platforms such as Linux (Gnome) and Mac OS X see the section Git-Cheetah on other Platforms. – James Moore Jun 24 '11 at 18:57
feedback

Github has released and updated interface for using Github on Windows on May 21 2012. Read the release blog here.

A new button 'Clone in Windows' will be visible, if you are accessing a github repository form a windows machine. This new application is a native client which integrates with Windows XP, Vista, 7 and the pre-release Windows 8. It also includes a full application. It also includes a complete installation of msysGit.

Also you can use the plugins available in Eclipse, Netbeans or other IDEs to use git features from your development environment.

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.