I\'ve been searching around, but I can\'t find a thorough description of what\'s going on with these 3 versions of MSYS. (It\'s entirely possible I just don\'t know what to look for.) I do understand that MSYS is a minimal port of Linux tools to support development using MinGW, but I\'m not clear on the relationship between the three of them or the teams that developed/maintain them.
Particular issues to address:
- Which ones are under active development? (In particular, is MSYS dead and MSYS2 active?)
- What is the relationship between the groups that maintain them? (In particular, did the MSYS team create MSYS2?)
- Does msysgit just use one of the others, or do they have their own branch of MSYS?
- Are any of these compatible with each other?
- Are there any compatibility issues with particular versions of Windows for any of these?
- Does one provide major features over the other?
Disclaimer: I am an MSYS2 developer
While MSYS isn\'t dead, I would say it\'s not looking very healthy either. It is a project
started by the mingw team many years ago as a fork of Cygwin that never kept up with Cygwin.
msysgit is a fork of a slightly older version of MSYS with some custom patches, old versions of bash and perl and a native port of git.
MSYS2 is a project started by Alexey Pavlov of the mingw-builds team (who are the official packagers for MinGW-w64 toolchains) as a recent fork of Cygwin which tracks the latest Cygwin closely so that it doesn\'t end up out of date. Alexey forward ported the old MSYS patches and added some of his own.
As well as providing the necessary Unix tools with which to compile native software - the stated goal of MSYS - we ported the Pacman package manager from Arch Linux. Pacman is more than just about managing binary packages (though it does that very well). It has a software building infrastructure called makepkg that allows the creation of recipes (PKGBUILD and patch files) for building software. IMHO the adoption of Pacman changes things significantly for Open Source development on Windows. Instead of everyone hacking on their own bespoke shell scripts to build software in a hodge-podge, incompatible way, packages can now depend on other packages and PKGBUILD files and associated patches can be used as a reference for constructing new PKGBUILDs. It\'s as close to a Linux system as a (native) Windows can get (Arch in particular) and allows for simple updating of all the installed packages.
We target Windows XP SP3 as a minimum and support both 32bit and 64bit Windows. We would ask that you never mix MSYS2 with msys or msysgit. Pacman is used to manage the whole system and as such, files from the other systems will cause conflicts.
We also try to upstream our patches to the projects we build and actively solicit contributions from other Open Source projects. We hope others find it easy to work with us.
Our main website is on Sourceforge and it contains links to our PKGBUILD repositories. We also have a more user friendly installer site on github.
Feel free to join us on IRC (oftc #msys2) if you want more information.
Git 2.8 (March 2016) includes a very detailed commit which explains the importance of msys2 for the new git-for-windows which replaced msysgit in early 2015.
See commit df5218b (13 Jan 2016) by Johannes Schindelin (dscho
).
(Merged by Junio C Hamano -- gitster
-- in commit 116a866, 29 Jan 2016)
For a long time, Git for Windows lagged behind Git\'s 2.x releases because the Git for Windows developers wanted to let that big jump coincide with a well-needed jump away from MSys to MSys2.
To understand why this is such a big issue, it needs to be noted that many parts of Git are not written in portable C, but instead Git relies on a POSIX shell and Perl to be available.
To support the scripts, Git for Windows has to ship a minimal POSIX emulation layer with Bash and Perl thrown in, and when the Git for Windows effort started in August 2007, this developer settled on using MSys, a stripped down version of Cygwin.
Consequently, the original name of the project was \"msysGit\" (which, sadly, caused a lot of confusion because few Windows users know about MSys, and even less care).
To compile the C code of Git for Windows, MSys was used, too: it sports
two versions of the GNU C Compiler:
- one that links implicitly to the POSIX emulation layer,
- and another one that targets the plain Win32 API (with a few convenience functions thrown in).
Git for Windows\' executables are built using the latter, and therefore they are really just Win32 programs. To discern executables requiring the POSIX emulation layer from the ones that do not, the latter are called MinGW
(Minimal GNU for Windows) when the former are called MSys executables.
This reliance on MSys incurred challenges, too, though:
- some of our changes to the MSys runtime -- necessary to support Git for Windows better -- were not accepted upstream, so we had to maintain our own
fork.
- Also, the MSys runtime was not developed further to support e.g. UTF-8 or 64-bit, and apart from lacking a package management system until much later (when
mingw-get
was introduced), many packages provided by the MSys/MinGW project lag behind the respective source code versions, in particular Bash and OpenSSL.
For a while, the Git for Windows project tried to remedy the situation by trying to build newer versions of those packages, but the situation quickly became untenable, especially with problems like the Heartbleed bug requiring swift action that has nothing to do with developing Git for Windows further.
Happily, in the meantime the MSys2 project (https://msys2.github.io/)
emerged, and was chosen to be the base of the Git for Windows 2.x.
Just like MSys, MSys2 is a stripped down version of Cygwin, but it is
actively kept up-to-date with Cygwin\'s source code.
Thereby, it already supports Unicode internally, and it also offers the 64-bit support that we yearned for since the beginning of the Git for Windows project.
MSys2 also ported the Pacman package management system from Arch Linux
and uses it heavily. This brings the same convenience to which Linux
users are used to from yum
or apt-get
, and to which MacOSX users are
used to from Homebrew or MacPorts, or BSD users from the Ports system,
to MSys2: a simple pacman -Syu
will update all installed packages to
the newest versions currently available.
MSys2 is also very active, typically providing package updates
multiple times per week.
It still required a two-month effort to bring everything to a state
where Git\'s test suite passes, many more months until the first official
Git for Windows 2.x was released, and a couple of patches still await
their submission to the respective upstream projects. Yet without MSys2,
the modernization of Git for Windows would simply not have happened.
This commit lays the ground work to supporting MSys2-based Git builds.
In the comments, the question was asked in January 2016:
Since Git for Windows is already based on MSYS2, have the binaries that don\'t depend on the emulation layer been made available as an MSYS2 package?
Ray Donnelly answered at the time:
We haven\'t fully merged yet, no. We\'re working on it though.
But... madz points out that during early 2017, that effort did not pan out.
See:
Alexpux/MSYS2-packages
PR 786
git-for-windows/git
issue 284
The problem is that I cannot contribute changes that will result in a new msys2-runtime in a timely manner.
Not a big problem, though: I\'ll just keep the fork of Git for Windows running indefinitely.
The wiki therefore mentions now (2018):
Git for Windows created some patches for msys2-runtime that have not been sent upstream. (This had been planned, but it was determined in issue #284 that it would probably not be happening.)
This means that you have to install Git for Windows customized msys2-runtime to have a fully working git inside MSYS2.
My understanding on the connections between them is
- cygwin offers POSIX emulation on top of windows
- msys tried to simplify cygwin but is obsolete from 2010
- msysGit - allowed git up to 1.9.4 in windwos (could be called git-for-windows-1.X), based on an old version of msys.
- msys2 - a simplified cygwin, forked from it, with changes from msys and kept in sync with features from cygwin, integrated with pacman
- minGW - initial minGW, abandoned from 2010
- minGW-w64 - a faster and better integration with windows, without POSIX
- git-for-windows-2.x - offers git from 2.X for windows using minGW-64, minGW-32 and when is not possible with a fallback to msys2
Fiddle with complete graph definition in mermaid