##// END OF EJS Templates
contrib/win32: license is GPLv2 only...
Adrian Buehlmann -
r8435:6f56dc1d default
parent child Browse files
Show More
@@ -1,112 +1,111 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>Mercurial is a command-line application. You must run it from
22 22 the Windows command prompt (or if you're hard core, a <a
23 23 href="http://www.mingw.org/">MinGW</a> shell).</p>
24 24
25 25 <p><div class="indented"><i>Note: the standard <a
26 26 href="http://www.mingw.org/">MinGW</a> msys startup script uses
27 27 rxvt which has problems setting up standard input and output.
28 28 Running bash directly works correctly.</i></div>
29 29
30 30 <p>For documentation, please visit the <a
31 31 href="http://www.selenic.com/mercurial">Mercurial web site</a>.
32 32 You can also download a free book, <a
33 33 href="http://hgbook.red-bean.com/">Distributed revision control
34 34 with Mercurial</a>.</p>
35 35
36 36 <p>By default, Mercurial installs to <tt>C:\Program Files\Mercurial</tt>. The
37 37 Mercurial command is called <tt>hg.exe</tt>.</p>
38 38
39 39 <h1>Testing Mercurial after you've installed it</h1>
40 40
41 41 <p>The easiest way to check that Mercurial is installed properly is to
42 42 just type the following at the command prompt:</p>
43 43
44 44 <pre>
45 45 hg
46 46 </pre>
47 47
48 48 <p>This command should print a useful help message. If it does,
49 49 other Mercurial commands should work fine for you.</p>
50 50
51 51 <h1>Configuration notes</h1>
52 52 <h4>Default editor</h4>
53 53 The default editor for commit messages is 'notepad'. You can set the EDITOR
54 54 (or HGEDITOR) environment variable to specify your preference or set it in
55 55 mercurial.ini:
56 56 <pre>
57 57 [ui]
58 58 editor = whatever
59 59 </pre>
60 60
61 61 <h4>Configuring a Merge program</h4>
62 62 It should be emphasized that Mercurial by itself doesn't attempt to do a
63 63 Merge at the file level, neither does it make any attempt to Resolve the conflicts.
64 64
65 65 By default, Mercurial will use the merge program defined by the HGMERGE environment
66 66 variable, or uses the one defined in the mercurial.ini file. (see <a href="http://www.selenic.com/mercurial/wiki/index.cgi/MergeProgram">MergeProgram</a> on the Mercurial Wiki for more information)
67 67
68 68 <h1>Reporting problems</h1>
69 69
70 70 <p>Before you report any problems, please consult the <a
71 71 href="http://www.selenic.com/mercurial">Mercurial web site</a> and
72 72 see if your question is already in our list of <a
73 73 href="http://www.selenic.com/mercurial/wiki/index.cgi/FAQ">Frequently
74 74 Answered Questions</a> (the "FAQ").
75 75
76 76 <p>If you cannot find an answer to your question, please feel
77 77 free to send mail to the Mercurial mailing list, at <a
78 78 href="mailto:mercurial@selenic.com">mercurial@selenic.com</a>.
79 79 <b>Remember</b>, the more useful information you include in your
80 80 report, the easier it will be for us to help you!</p>
81 81
82 82 <p>If you are IRC-savvy, that's usually the fastest way to get
83 83 help. Go to <tt>#mercurial</tt> on
84 84 <tt>irc.freenode.net</tt>.</p>
85 85
86 86 <h1>Author and copyright information</h1>
87 87
88 88 <p>Mercurial was written by <a href="http://www.selenic.com">Matt
89 89 Mackall</a>, and is maintained by Matt and a team of
90 90 volunteers.</p>
91 91
92 92 <p>The Windows installer was written by <a
93 93 href="http://www.serpentine.com/blog">Bryan
94 94 O'Sullivan</a>.</p>
95 95
96 96 <p>Mercurial is Copyright 2005-2009 Matt Mackall and others.
97 97 See the <tt>Contributors.txt</tt> file for a list of contributors.</p>
98 98
99 99 <p>Mercurial is free software; you can redistribute it and/or
100 100 modify it under the terms of the <a
101 href="http://www.gnu.org/copyleft/gpl.html">GNU General Public
102 License</a> as published by the Free Software Foundation; either
103 version 2 of the License, or (at your option) any later
104 version.</p>
101 href="http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt">GNU
102 General Public License version 2</a> as published by the Free
103 Software Foundation.</p>
105 104
106 105 <p>Mercurial is distributed in the hope that it will be useful,
107 106 but <b>without any warranty</b>; without even the implied
108 107 warranty of <b>merchantability</b> or <b>fitness for a
109 108 particular purpose</b>. See the GNU General Public License for
110 109 more details.</p>
111 110 </body>
112 111 </html>
General Comments 0
You need to be logged in to leave comments. Login now