##// END OF EJS Templates
update windows readme to document msys/mingw rxvt problems.
Lee Cantey -
r2091:fb8b35b0 default
parent child Browse files
Show More
@@ -1,123 +1,136 b''
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <html>
2 <html>
3 <head>
3 <head>
4 <title>Mercurial for Windows</title>
4 <title>Mercurial for Windows</title>
5 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
6 <style type="text/css">
7 <!--
8 .indented
9 {
10 padding-left: 10pt;
11 }
12 -->
13 </style>
5 </head>
14 </head>
6
15
7 <body>
16 <body>
8 <h1>Mercurial version 0.8 for Windows</h1>
17 <h1>Mercurial version 0.8 for Windows</h1>
9
18
10 <p>Welcome to Mercurial for Windows!</p>
19 <p>Welcome to Mercurial for Windows!</p>
11
20
12 <p>Mercurial is a command-line application. You must run it from
21 <p>Mercurial is a command-line application. You must run it from
13 the Windows command prompt (or if you're hard core, a <a
22 the Windows command prompt (or if you're hard core, a <a
14 href="http://www.mingw.org/">MinGW</a> shell).</p>
23 href="http://www.mingw.org/">MinGW</a> shell).</p>
24
25 <p><div class="indented"><i>Note: the standard <a
26 href="http://www.mingw.org/">MinGW</a> msys startup script uses
27 rxvt which has problems setting up standard input and output.
28 Running bash directly works correctly.</i></div>
15
29
16 <p>For documentation, please visit the <a
30 <p>For documentation, please visit the <a
17 href="http://www.selenic.com/mercurial">Mercurial web
31 href="http://www.selenic.com/mercurial">Mercurial web site</a>.</p>
18 site</a>.</p>
19
32
20 <p>By default, Mercurial installs to <tt>C:\Mercurial</tt>. The
33 <p>By default, Mercurial installs to <tt>C:\Mercurial</tt>. The
21 Mercurial command is called <tt>hg.exe</tt>. To run this
34 Mercurial command is called <tt>hg.exe</tt>. To run this
22 command, the install directory must be in your search path.</p>
35 command, the install directory must be in your search path.</p>
23
36
24 <h2>Setting your search path temporarily</h2>
37 <h2>Setting your search path temporarily</h2>
25
38
26 <p>To set your search path temporarily, type the following into a
39 <p>To set your search path temporarily, type the following into a
27 command prompt window:</p>
40 command prompt window:</p>
28
41
29 <pre>
42 <pre>
30 set PATH=C:\Mercurial;%PATH%
43 set PATH=C:\Mercurial;%PATH%
31 </pre>
44 </pre>
32
45
33 <h2>Setting your search path permanently</h2>
46 <h2>Setting your search path permanently</h2>
34
47
35 <p>To set your search path permanently, perform the following
48 <p>To set your search path permanently, perform the following
36 steps. These instructions are for Windows NT, 2000 and XP.</p>
49 steps. These instructions are for Windows NT, 2000 and XP.</p>
37
50
38 <ol>
51 <ol>
39 <li>Open the Control Panel. Under Windows XP, select the
52 <li>Open the Control Panel. Under Windows XP, select the
40 "Classic View".</li>
53 "Classic View".</li>
41
54
42 <li>Double-click on the "System" control panel.</li>
55 <li>Double-click on the "System" control panel.</li>
43
56
44 <li>Click on the "Advanced" tab.</li>
57 <li>Click on the "Advanced" tab.</li>
45
58
46 <li>Click on "Environment Variables". You'll find this near the
59 <li>Click on "Environment Variables". You'll find this near the
47 bottom of the window.</li>
60 bottom of the window.</li>
48
61
49 <li>Under "System variables", you will see "Path". Double-click
62 <li>Under "System variables", you will see "Path". Double-click
50 it.</li>
63 it.</li>
51
64
52 <li>Edit "Variable value". Each path element is separated by a
65 <li>Edit "Variable value". Each path element is separated by a
53 semicolon (";") character. Append a semicolon to the end of the
66 semicolon (";") character. Append a semicolon to the end of the
54 list, followed by the path where you installed Mercurial
67 list, followed by the path where you installed Mercurial
55 (e.g. <tt>C:\Mercurial</tt>).</li>
68 (e.g. <tt>C:\Mercurial</tt>).</li>
56
69
57 <li>Click on the various "OK" buttons until you've completely
70 <li>Click on the various "OK" buttons until you've completely
58 exited from the System control panel.</li>
71 exited from the System control panel.</li>
59
72
60 <li>Log out and log back in, or restart your system.</li>
73 <li>Log out and log back in, or restart your system.</li>
61
74
62 <li>The next time you run the Windows command prompt, you will be
75 <li>The next time you run the Windows command prompt, you will be
63 able to run the <tt>hg</tt> command without any special
76 able to run the <tt>hg</tt> command without any special
64 help.</li>
77 help.</li>
65 </ol>
78 </ol>
66
79
67 <h1>Testing Mercurial after you've installed it</h1>
80 <h1>Testing Mercurial after you've installed it</h1>
68
81
69 <p>The easiest way to check that Mercurial is installed properly is to
82 <p>The easiest way to check that Mercurial is installed properly is to
70 just type the following at the command prompt:</p>
83 just type the following at the command prompt:</p>
71
84
72 <pre>
85 <pre>
73 hg
86 hg
74 </pre>
87 </pre>
75
88
76 <p>This command should print a useful help message. If it does,
89 <p>This command should print a useful help message. If it does,
77 other Mercurial commands should work fine for you.</p>
90 other Mercurial commands should work fine for you.</p>
78
91
79 <h1>Reporting problems</h1>
92 <h1>Reporting problems</h1>
80
93
81 <p>Before you report any problems, please consult the <a
94 <p>Before you report any problems, please consult the <a
82 href="http://www.selenic.com/mercurial">Mercurial web site</a> and
95 href="http://www.selenic.com/mercurial">Mercurial web site</a> and
83 see if your question is already in our list of <a
96 see if your question is already in our list of <a
84 href="http://www.selenic.com/mercurial/wiki/index.cgi/FAQ">Frequently
97 href="http://www.selenic.com/mercurial/wiki/index.cgi/FAQ">Frequently
85 Answered Questions</a> (the "FAQ").
98 Answered Questions</a> (the "FAQ").
86
99
87 <p>If you cannot find an answer to your question, please feel
100 <p>If you cannot find an answer to your question, please feel
88 free to send mail to the Mercurial mailing list, at <a
101 free to send mail to the Mercurial mailing list, at <a
89 href="mailto:mercurial@selenic.com">mercurial@selenic.com</a>.
102 href="mailto:mercurial@selenic.com">mercurial@selenic.com</a>.
90 <b>Remember</b>, the more useful information you include in your
103 <b>Remember</b>, the more useful information you include in your
91 report, the easier it will be for us to help you!</p>
104 report, the easier it will be for us to help you!</p>
92
105
93 <p>If you are IRC-savvy, that's usually the fastest way to get
106 <p>If you are IRC-savvy, that's usually the fastest way to get
94 help. Go to <tt>#mercurial</tt> on
107 help. Go to <tt>#mercurial</tt> on
95 <tt>irc.freenode.net</tt>.</p>
108 <tt>irc.freenode.net</tt>.</p>
96
109
97 <h1>Author and copyright information</h1>
110 <h1>Author and copyright information</h1>
98
111
99 <p>Mercurial was written by <a href="http://www.selenic.com">Matt
112 <p>Mercurial was written by <a href="http://www.selenic.com">Matt
100 Mackall</a>, and is maintained by Matt and a team of
113 Mackall</a>, and is maintained by Matt and a team of
101 volunteers.</p>
114 volunteers.</p>
102
115
103 <p>The Windows installer was written by <a
116 <p>The Windows installer was written by <a
104 href="http://www.serpentine.com/blog">Bryan
117 href="http://www.serpentine.com/blog">Bryan
105 O'Sullivan</a>.</p>
118 O'Sullivan</a>.</p>
106
119
107 <p>Mercurial is Copyright 2005 Matt Mackall and others. See the
120 <p>Mercurial is Copyright 2005 Matt Mackall and others. See the
108 <tt>Contributors.txt</tt> file for a list of contributors.</p>
121 <tt>Contributors.txt</tt> file for a list of contributors.</p>
109
122
110 <p>Mercurial is free software; you can redistribute it and/or
123 <p>Mercurial is free software; you can redistribute it and/or
111 modify it under the terms of the <a
124 modify it under the terms of the <a
112 href="http://www.gnu.org/copyleft/gpl.html">GNU General Public
125 href="http://www.gnu.org/copyleft/gpl.html">GNU General Public
113 License</a> as published by the Free Software Foundation; either
126 License</a> as published by the Free Software Foundation; either
114 version 2 of the License, or (at your option) any later
127 version 2 of the License, or (at your option) any later
115 version.</p>
128 version.</p>
116
129
117 <p>Mercurial is distributed in the hope that it will be useful,
130 <p>Mercurial is distributed in the hope that it will be useful,
118 but <b>without any warranty</b>; without even the implied
131 but <b>without any warranty</b>; without even the implied
119 warranty of <b>merchantability</b> or <b>fitness for a
132 warranty of <b>merchantability</b> or <b>fitness for a
120 particular purpose</b>. See the GNU General Public License for
133 particular purpose</b>. See the GNU General Public License for
121 more details.</p>
134 more details.</p>
122 </body>
135 </body>
123 </html>
136 </html>
General Comments 0
You need to be logged in to leave comments. Login now