equal
deleted
inserted
replaced
10 The default and stable branches are meant for development. |
10 The default and stable branches are meant for development. |
11 |
11 |
12 install |
12 install |
13 ------- |
13 ------- |
14 |
14 |
15 Either copy hgkw/keyword.py into the hgext directory of your |
15 Run "python setup.py install". |
16 Mercurial installation. |
|
17 Then add the lines: |
|
18 |
|
19 [extensions] |
|
20 hgext.keyword = |
|
21 |
|
22 to your hgrc file. |
|
23 |
|
24 Or run "python setup.py install". |
|
25 See also "pyton setup.py --help". |
16 See also "pyton setup.py --help". |
26 Then add the line: |
17 Then add the line: |
27 |
18 |
28 [extensions] |
19 [extensions] |
29 keyword = /path/to/hgkw/keyword.py |
20 keyword = /path/to/hgkw/keyword.py |
39 |
30 |
40 |
31 |
41 testing |
32 testing |
42 ------- |
33 ------- |
43 |
34 |
44 Copy hgkw/keyword.py into the hgext directory of your Mercurial |
35 $ cd tests |
45 source tree. Copy tests/test-keyword, tests/test-keyword.out into |
36 $ python run-tests.py --with-hg=/path/to/hg test-keyword |
46 the tests directory of your Mercurial source tree. Change to that |
|
47 directory and run: |
|
48 |
|
49 $ python run-tests.py test-keyword |
|
50 |
|
51 and then keep your fingers crossed ... |
|