Skip to content

Commit 46eff84

Browse files
committed
Generate the requirements page
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent aea4365 commit 46eff84

1 file changed

Lines changed: 75 additions & 0 deletions

File tree

requirements.html

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<title>Git for Windows</title>
7+
<meta name="description" content="We bring the awesome Git VCS to Windows">
8+
<meta name="viewport" content="width=device-width, initial-scale=1">
9+
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:300,400,700">
10+
<link rel="stylesheet" href="css/pack.css">
11+
<style type="text/css">
12+
body {
13+
color: #FFF;
14+
}
15+
16+
h1 {
17+
text-align: center;
18+
}
19+
20+
article p,h3,ul {
21+
margin-left: auto;
22+
margin-right: auto;
23+
width: 65%;
24+
}
25+
</style>
26+
<link rel="shortcut icon" href="favicon.ico">
27+
<!--[if lt IE 9]>
28+
<script src="js/html5shiv.js"></script>
29+
<script src="js/respond.js"></script>
30+
<![endif]-->
31+
</head>
32+
<body>
33+
<footer>
34+
<div class="content">
35+
<ul class="list-unstyled">
36+
<li><a href="https://github.com/git-for-windows/git/wiki/FAQ" target="_blank">FAQ</a></li>
37+
<li><a href="https://github.com/git-for-windows/git" target="_blank">Repository</a></li>
38+
<li><a href="http://groups.google.com/group/git-for-windows" target="_blank">Mailing List</a></li>
39+
</ul>
40+
<a href="index.html"><h1 class="gittext lowercase">Git for Windows</h1></a>
41+
<div class="stud"></div>
42+
</div>
43+
</footer>
44+
<section class="details">
45+
<article>
46+
<h1 id="prerequisites">Prerequisites</h1>
47+
<p>This page lists the prerequisites required to run <a href="https://git-for-windows.github.io/">Git for Windows</a>.</p>
48+
<h2 id="windows-version">Windows version</h2>
49+
<p>As of Git for Windows v2.10.1, Windows Vista or later are required. 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>
50+
<p>Why?</p>
51+
<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>&#39;s POSIX emulation layer, which in turn is based on the <a href="https://cygwin.com">Cygwin POSIX emulation layer</a>. Seeing as Windows XP and Windows Server 2003 are years past their official end of life, the Cygwin project ended their Herculean efforts to support those Windows versions.</p>
52+
53+
</article>
54+
</section>
55+
<footer>
56+
<div class="content">
57+
<ul class="list-unstyled">
58+
<li><a href="https://github.com/git-for-windows/git/wiki/FAQ" target="_blank">FAQ</a></li>
59+
<li><a href="https://github.com/git-for-windows/git" target="_blank">Repository</a></li>
60+
<li><a href="http://groups.google.com/group/git-for-windows" target="_blank">Mailing List</a></li>
61+
</ul>
62+
<a href="index.html"><h1 class="gittext lowercase">Git for Windows</h1></a>
63+
<div class="stud"></div>
64+
</div>
65+
</footer>
66+
<script src="js/pack.js"></script>
67+
<script>
68+
$(document).ready(function() {
69+
$(".fancybox-thumb").fancybox({
70+
padding: 0
71+
});
72+
});
73+
</script>
74+
</body>
75+
</html>

0 commit comments

Comments
 (0)