Show More
@@ -66,9 +66,6 b' HGMERGE::' | |||
|
66 | 66 | will be executed with three arguments: local file, remote file, |
|
67 | 67 | ancestor file. |
|
68 | 68 | |
|
69 | The default program is "hgmerge", which is a shell script provided | |
|
70 | by Mercurial with some sensible defaults. | |
|
71 | ||
|
72 | 69 | (deprecated, use .hgrc) |
|
73 | 70 | |
|
74 | 71 | HGRCPATH:: |
@@ -97,11 +94,11 b' VISUAL::' | |||
|
97 | 94 | This is the name of the editor to use when committing. See EDITOR. |
|
98 | 95 | |
|
99 | 96 | EDITOR:: |
|
100 |
Sometimes Mercurial needs to open a text file in an editor |
|
|
101 |
to modify, for example when writing commit messages |
|
|
102 |
|
|
|
103 |
|
|
|
104 |
|
|
|
97 | Sometimes Mercurial needs to open a text file in an editor | |
|
98 | for a user to modify, for example when writing commit messages. | |
|
99 | The editor it uses is determined by looking at the environment | |
|
100 | variables HGEDITOR, VISUAL and EDITOR, in that order. The first | |
|
101 | non-empty one is chosen. If all of them are empty, the editor | |
|
105 | 102 | defaults to 'vi'. |
|
106 | 103 | |
|
107 | 104 | PYTHONPATH:: |
@@ -40,11 +40,6 b' try:' | |||
|
40 | 40 | except ImportError: |
|
41 | 41 | pass |
|
42 | 42 | |
|
43 | if os.name in ['nt']: | |
|
44 | extra['scripts'] = ['hg'] | |
|
45 | else: | |
|
46 | extra['scripts'] = ['hg', 'hgmerge'] | |
|
47 | ||
|
48 | 43 | # specify version string, otherwise 'hg identify' will be used: |
|
49 | 44 | version = '' |
|
50 | 45 | |
@@ -77,6 +72,7 b" setup(name='mercurial'," | |||
|
77 | 72 | url='http://selenic.com/mercurial', |
|
78 | 73 | description='Scalable distributed SCM', |
|
79 | 74 | license='GNU GPL', |
|
75 | scripts=['hg'], | |
|
80 | 76 | packages=['mercurial', 'mercurial.hgweb', 'hgext', 'hgext.convert'], |
|
81 | 77 | ext_modules=ext_modules, |
|
82 | 78 | data_files=[(os.path.join('mercurial', root), |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
General Comments 0
You need to be logged in to leave comments.
Login now