-
Notifications
You must be signed in to change notification settings - Fork 189
/
requirements.html
78 lines (75 loc) · 3.68 KB
/
requirements.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Git for Windows</title>
<meta name="description" content="We bring the awesome Git VCS to Windows">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:300,400,700">
<link rel="stylesheet" href="css/pack.css">
<style type="text/css">
body {
color: #FFF;
}
h1 {
text-align: center;
}
article p,h3,ul {
margin-left: auto;
margin-right: auto;
width: 65%;
}
</style>
<link rel="shortcut icon" href="favicon.ico">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.js"></script>
<![endif]-->
</head>
<body>
<footer>
<div class="content">
<ul class="list-unstyled">
<li><a href="https://github.com/git-for-windows/git/wiki/FAQ" target="_blank">FAQ</a></li>
<li><a href="https://github.com/git-for-windows/git" target="_blank">Repository</a></li>
<li><a href="http://groups.google.com/group/git-for-windows" target="_blank">Mailing List</a></li>
</ul>
<a href="index.html"><h1 class="gittext lowercase">Git for Windows</h1></a>
<div class="stud"></div>
</div>
</footer>
<section class="details">
<article>
<h1 id="prerequisites">Prerequisites</h1>
<p>This page lists the prerequisites required to run <a href="https://gitforwindows.org/">Git for Windows</a>.</p>
<h2 id="windows-version">Windows version</h2>
<p>Git for Windows requires Windows 8.1 or later on i686 and x86_64 CPU architectures. The last version to support Windows 7, 8, Server 2008 R2 and Server 2012 was <a href="https://github.com/git-for-windows/git/releases/tag/v2.46.2.windows.1">v2.46.2</a>. The last version to support Windows Vista and Server 2008 was <a href="https://github.com/git-for-windows/git/releases/tag/v2.37.1.windows.1">v2.37.1</a>. The last version of Git for Windows to support Windows XP and Windows Server 2003 is <a href="https://github.com/git-for-windows/git/releases/tag/v2.10.0.windows.1">v2.10.0</a>.</p>
<p>Why?</p>
<p>Parts of Git are implemented in shell script, and Git for Windows runs those scripts via <a href="https://msys2.github.io/">MSYS2</a>'s POSIX emulation layer, which in turn is based on the <a href="https://cygwin.com">Cygwin POSIX emulation layer</a>. Seeing as Windows 8, Server 2012, 7, Server 2008 R2, Vista, Server 2008, XP and Server 2003 are years past their official end of life, the Cygwin project ended their Herculean efforts to support those Windows versions.</p>
<p>Git for Windows requires Windows 11 on the ARM64 CPU architecture.</p>
<p>Why?</p>
<p>The POSIX emulation layer mentioned above does not yet exist for ARM64, so we need x86_64 emulation to run the x86_64 version. The required x86_64 emulation is not available prior to Windows 11. While an i686 version exists, that is <a href="https://gitforwindows.org/32-bit.html">on a deprection timeline</a>.</p>
</article>
</section>
<footer>
<div class="content">
<ul class="list-unstyled">
<li><a href="https://github.com/git-for-windows/git/wiki/FAQ" target="_blank">FAQ</a></li>
<li><a href="https://github.com/git-for-windows/git" target="_blank">Repository</a></li>
<li><a href="http://groups.google.com/group/git-for-windows" target="_blank">Mailing List</a></li>
</ul>
<a href="index.html"><h1 class="gittext lowercase">Git for Windows</h1></a>
<div class="stud"></div>
</div>
</footer>
<script src="js/pack.js"></script>
<script>
$(document).ready(function() {
$(".fancybox-thumb").fancybox({
padding: 0
});
});
</script>
</body>
</html>