Show More
@@ -7,30 +7,31 b'' | |||
|
7 | 7 | |
|
8 | 8 | '''browse the repository in a graphical way |
|
9 | 9 | |
|
10 |
The hgk extension allows browsing the history of a repository in a |
|
|
11 |
way. It requires Tcl/Tk version 8.4 or later. (Tcl/Tk is not |
|
|
12 | Mercurial.) | |
|
10 | The hgk extension allows browsing the history of a repository in a | |
|
11 | graphical way. It requires Tcl/Tk version 8.4 or later. (Tcl/Tk is not | |
|
12 | distributed with Mercurial.) | |
|
13 | 13 | |
|
14 |
hgk consists of two parts: a Tcl script that does the displaying and |
|
|
15 |
of information, and an extension to Mercurial named hgk.py, |
|
|
16 |
hooks for hgk to get information. hgk can be found in |
|
|
17 | and the extension is shipped in the hgext repository, and needs to be enabled. | |
|
14 | hgk consists of two parts: a Tcl script that does the displaying and | |
|
15 | querying of information, and an extension to Mercurial named hgk.py, | |
|
16 | which provides hooks for hgk to get information. hgk can be found in | |
|
17 | the contrib directory, and the extension is shipped in the hgext | |
|
18 | repository, and needs to be enabled. | |
|
18 | 19 | |
|
19 |
The hg view command will launch the hgk Tcl script. For this command |
|
|
20 |
hgk must be in your search path. Alternately, you can specify |
|
|
21 | in your .hgrc file:: | |
|
20 | The hg view command will launch the hgk Tcl script. For this command | |
|
21 | to work, hgk must be in your search path. Alternately, you can specify | |
|
22 | the path to hgk in your .hgrc file:: | |
|
22 | 23 | |
|
23 | 24 | [hgk] |
|
24 | 25 | path=/location/of/hgk |
|
25 | 26 | |
|
26 |
hgk can make use of the extdiff extension to visualize revisions. |
|
|
27 | had already configured extdiff vdiff command, just add:: | |
|
27 | hgk can make use of the extdiff extension to visualize revisions. | |
|
28 | Assuming you had already configured extdiff vdiff command, just add:: | |
|
28 | 29 | |
|
29 | 30 | [hgk] |
|
30 | 31 | vdiff=vdiff |
|
31 | 32 | |
|
32 |
Revisions context menu will now display additional entries to fire |
|
|
33 | hovered and selected revisions. | |
|
33 | Revisions context menu will now display additional entries to fire | |
|
34 | vdiff on hovered and selected revisions. | |
|
34 | 35 | ''' |
|
35 | 36 | |
|
36 | 37 | import os |
General Comments 0
You need to be logged in to leave comments.
Login now