Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having trouble determining the difference between msysGit and Git for Windows. How are they different? Why would I choose one over the other?

share|improve this question
6  
+1, this is actually a harder/more involved/important question than it first appears. – Antony Vennard Sep 8 '10 at 23:00
1  
See also Different between msysgit and cygwin + git ?: stackoverflow.com/questions/3144082/… – VonC Sep 13 '10 at 7:40

3 Answers

up vote 35 down vote accepted

Are they not the same thing?

On: http://msysgit.github.com/ The title is Git for Windows, the application is msysgit.

Even in the event they are not, I expect the only differences will be in the method of compilation (i.e. compiler used and any options set) and any extraneous packaging (such as having a bash emulating shell as in msysgit). The actual product (git itself) should remain broadly similar.


Edit: Thanks to Jarrod for pointing this out. I've left the above in for posterity. To quote the wiki:

msysGit is the development environment to compile Git for Windows. It is complete, in the sense that you just need to install msysGit, and then you can build Git. Without installing any 3rd-party software. msysGit is not Git for Windows; that is an installer which installs Git -- and only Git.

It is easy to see the difference: the installers for Git have the prefix Git-, the msysGit installers have the prefix msysGit-. Another telltale is that the msysGit installers come in two flavors: fullinstall and netinstall. Further, msysGit does not install to C:\Program Files by default. But msysGit comes with gcc, the GNU C Compiler.

So, the difference between the two projects:

  • msysGit is the msys+mingw environment + everything needed to compile git yourself, on Windows.
  • Git for Windows is exactly that: git, compiled for Windows.
share|improve this answer
4  
I don't think they are the same thing. If you follow a link in the one you posted, you will find "msysGit is not Git for Windows" on the wiki – Jarrod Sep 8 '10 at 22:51
1  
@Jarrod I think you are absolutely correct and I've updated my answer. – Antony Vennard Sep 8 '10 at 22:59
4  
Please excuse my ignorance, but why would I want to compile git? If I just wanted to use git for source control on windows, do I need msysGit? – Jarrod Sep 8 '10 at 23:19
2  
@Jarrod Short answer to your question: No. Get Git on Windows. – Antony Vennard Sep 8 '10 at 23:24
1  
@Jarrod: You'd want to compile it yourself if you wanted to use the latest version of git, so you can get all the exciting new features as soon as possible! I do this on linux. – Jefromi Sep 8 '10 at 23:46
show 3 more comments

Here is the excerpt 'Official README'

"portable" version of Git for Windows (MSysGit) does not need tobe installed. It will run from any directory you place it in, evenonto a USB thumbdrive. It will not write permanent entries into the Windows registry. It does not need administrator privileges to "install". This version does not offer you the convenient right-click context menu entries "Git GUI Here" and "Git Bash Here", because these would require to add entries into the Windows registry.

share|improve this answer

The titles on the download page have just been updated so that the "Git for Windows" versions are fully identified. There is now both an 'installed' version (with right click menu options), and a Portable version that runs direct from a memory stick etc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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