Installer: Use a width of 405 pixels for all radio button / label captions
[msysgit.git] / README.md
blob27963c9fa51bfd5ecec7640f5133be1d613485fa
1 # Build environment for Git for Windows
3 This is the build environment -- also known as msysGit -- for [Git for Windows](http://msysgit.googlecode.com/).
5 The easiest way is to install it via the [net installer](http://code.google.com/p/msysgit/downloads/list?q=netinstall). This installer will clone our [two](http://github.com/msysgit/msysgit) [repositories](http://github.com/msysgit/git), including all the necessary components to build Git for Windows, and perform an initial build.
7 # The build environment
9 msysGit brings a few components that are required to build Git:
11 - Bash, a Unix-type command-line shell. Quite a few components of Git itself are still shell scripts. Therefore, Bash is required to execute Git commands (see the output of `cd /git && git ls-files \*.sh` for a full list).
12 - the GNU C Compiler. Since we try to rely only on free software (apart from the Operating System, of course), we think it makes more sense to rely on GCC than on Visual Studio express. Also, it makes the maintenance burden lighter, as [upstream Git](http://github.com/gitster/git) also targets mainly GCC.
13 - GNU Make.
14 - Perl. Still required for a couple of Git components (see the output of `cd /git && git ls-files \*.perl`), most notably `git svn`.
15 - Tcl/Tk, a scripting language making it easy to implement cross-platform graphical user interfaces. We need this for `gitk` and `git gui`.
16 - [cURL](http://curl.haxx.se), a library implementing HTTP and FTP transport.
17 - many more libraries.
18 - some Unix programs required by the shell scripts in Git.
20 # The relationship between _msysGit_ and _Git for Windows_
22 [Git for Windows](http://code.google.com/p/msysgit/downloads/list?q=full+installer+for+official+git) is the software package that installs a minimal environment to run Git on Windows. It comes with a Bash (a Unix-type shell), with a Perl interpreter and with the Git executable and its dependencies.
24 On the other hand, msysGit is the software package installing the _build environment_ that can build Git for Windows.  The easiest way is to install it via the [net installer](http://code.google.com/p/msysgit/downloads/list?q=netinstall).
26 # The difference between MSys and MinGW
28 The [MinGW project](http://mingw.org/)'s goal is to provide a way to compile native Windows binaries with no POSIX layer using the GNU C Compiler.
30 However, at least the Bash needs a POSIX layer (most notably due to the absence of the `fork()` call on Windows). Therefore, MSys (the _minimal system_) is thrown in, offering the minimal system necessary to offer Bash (and Perl) functionality on Windows.
32 Consequently, MSys ships with a POSIX layer (based on an old version of Cygwin) that is only used by the Bash and Perl, but not by anything compiled within that environment.
34 # Further information
36 For more information and documentation, please have a look and enhance our [Wiki](https://github.com/msysgit/msysgit/wiki).
38 For code contributions and discussions, please see our [mailing list](http://groups.google.com/group/msysgit).