##// END OF EJS Templates
contrib/win32: updated title of the hgbook
Martin Geisler -
r8440:bfcbba5f default
parent child Browse files
Show More
@@ -1,147 +1,147 b''
1 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 2 <html>
3 3 <head>
4 4 <title>Mercurial for Windows</title>
5 5 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
6 6 <style type="text/css">
7 7 <!--
8 8 .indented
9 9 {
10 10 padding-left: 10pt;
11 11 }
12 12 -->
13 13 </style>
14 14 </head>
15 15
16 16 <body>
17 17 <h1>Mercurial for Windows</h1>
18 18
19 19 <p>Welcome to Mercurial for Windows!</p>
20 20
21 21 <p>
22 22 Mercurial is a command-line application. You must run it from
23 23 the Windows command prompt (or if you're hard core, a <a
24 24 href="http://www.mingw.org/">MinGW</a> shell).
25 25 </p>
26 26
27 27 <p class="indented">
28 28 <i>Note: the standard <a href="http://www.mingw.org/">MinGW</a>
29 29 msys startup script uses rxvt which has problems setting up
30 30 standard input and output. Running bash directly works
31 31 correctly.</i>
32 32 </p>
33 33
34 34 <p>
35 35 For documentation, please visit the <a
36 36 href="http://www.selenic.com/mercurial">Mercurial web site</a>.
37 37 You can also download a free book, <a
38 href="http://hgbook.red-bean.com/">Distributed revision control
39 with Mercurial</a>.
38 href="http://hgbook.red-bean.com/">Mercurial: The Definitive
39 Guide</a>.
40 40 </p>
41 41
42 42 <p>
43 43 By default, Mercurial installs to <tt>C:\Program
44 44 Files\Mercurial</tt>. The Mercurial command is called
45 45 <tt>hg.exe</tt>.
46 46 </p>
47 47
48 48 <h1>Testing Mercurial after you've installed it</h1>
49 49
50 50 <p>
51 51 The easiest way to check that Mercurial is installed properly is
52 52 to just type the following at the command prompt:
53 53 </p>
54 54
55 55 <pre>
56 56 hg
57 57 </pre>
58 58
59 59 <p>
60 60 This command should print a useful help message. If it does,
61 61 other Mercurial commands should work fine for you.
62 62 </p>
63 63
64 64 <h1>Configuration notes</h1>
65 65 <h4>Default editor</h4>
66 66 <p>
67 67 The default editor for commit messages is 'notepad'. You can set
68 68 the <tt>EDITOR</tt> (or <tt>HGEDITOR</tt>) environment variable
69 69 to specify your preference or set it in <tt>mercurial.ini</tt>:
70 70 </p>
71 71 <pre>
72 72 [ui]
73 73 editor = whatever
74 74 </pre>
75 75
76 76 <h4>Configuring a Merge program</h4>
77 77 <p>
78 78 It should be emphasized that Mercurial by itself doesn't attempt
79 79 to do a Merge at the file level, neither does it make any
80 80 attempt to Resolve the conflicts.
81 81 </p>
82 82
83 83 <p>
84 84 By default, Mercurial will use the merge program defined by the
85 85 <tt>HGMERGE</tt> environment variable, or uses the one defined
86 86 in the <tt>mercurial.ini</tt> file. (see <a
87 87 href="http://www.selenic.com/mercurial/wiki/index.cgi/MergeProgram">MergeProgram</a>
88 88 on the Mercurial Wiki for more information)
89 89 </p>
90 90
91 91 <h1>Reporting problems</h1>
92 92
93 93 <p>
94 94 Before you report any problems, please consult the <a
95 95 href="http://www.selenic.com/mercurial">Mercurial web site</a>
96 96 and see if your question is already in our list of <a
97 97 href="http://www.selenic.com/mercurial/wiki/index.cgi/FAQ">Frequently
98 98 Answered Questions</a> (the "FAQ").
99 99 </p>
100 100
101 101 <p>
102 102 If you cannot find an answer to your question, please feel free
103 103 to send mail to the Mercurial mailing list, at <a
104 104 href="mailto:mercurial@selenic.com">mercurial@selenic.com</a>.
105 105 <b>Remember</b>, the more useful information you include in your
106 106 report, the easier it will be for us to help you!
107 107 </p>
108 108
109 109 <p>
110 110 If you are IRC-savvy, that's usually the fastest way to get
111 111 help. Go to <tt>#mercurial</tt> on <tt>irc.freenode.net</tt>.
112 112 </p>
113 113
114 114 <h1>Author and copyright information</h1>
115 115
116 116 <p>
117 117 Mercurial was written by <a href="http://www.selenic.com">Matt
118 118 Mackall</a>, and is maintained by Matt and a team of volunteers.
119 119 </p>
120 120
121 121 <p>
122 122 The Windows installer was written by <a
123 123 href="http://www.serpentine.com/blog">Bryan O'Sullivan</a>.
124 124 </p>
125 125
126 126 <p>
127 127 Mercurial is Copyright 2005-2009 Matt Mackall and others. See
128 128 the <tt>Contributors.txt</tt> file for a list of contributors.
129 129 </p>
130 130
131 131 <p>
132 132 Mercurial is free software; you can redistribute it and/or
133 133 modify it under the terms of the <a
134 134 href="http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt">GNU
135 135 General Public License version 2</a> as published by the Free
136 136 Software Foundation.
137 137 </p>
138 138
139 139 <p>
140 140 Mercurial is distributed in the hope that it will be useful, but
141 141 <b>without any warranty</b>; without even the implied warranty
142 142 of <b>merchantability</b> or <b>fitness for a particular
143 143 purpose</b>. See the GNU General Public License for more
144 144 details.
145 145 </p>
146 146 </body>
147 147 </html>
General Comments 0
You need to be logged in to leave comments. Login now