comparison mercurial-tests/testData/bin/ReadMe.html @ 88:6fada1d52902 Darjeeling-5.0.x

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