equal
deleted
inserted
replaced
|
1 # This is an example configuration file that you could use as ~/.hgrc |
|
2 # A repository can have additional configuration data in /path/to/repo/.hg/hgrc |
|
3 |
|
4 |
|
5 [extensions] |
|
6 # Many extensions come with the system, but need to be activated |
|
7 |
|
8 # patch queue extension. Required for "strip" |
|
9 hgext.mq = |
|
10 |
|
11 # colored diffs, hg status |
|
12 hgext.color = |
|
13 |
|
14 # ascii revision graph by the glog command |
|
15 hgext.graphlog = |
|
16 |
|
17 # conveniently pull and merge in one step |
|
18 # See http://mercurial.selenic.com/wiki/FetchExtension |
|
19 hgext.fetch = |
|
20 |
|
21 |
|
22 |
|
23 [defaults] |
|
24 |
|
25 # This section sets default command line arguments for commands |
|
26 |
|
27 # show 5 changes by default. Change to what fits on your screen |
|
28 log = -l 5 |
|
29 glog = -l 5 |
|
30 |
|
31 # Replace lengthy commit message from fetch merges |
|
32 fetch = -m "merged" |
|
33 |
|
34 |
|
35 [ui] |
|
36 # username that appears in changesets. Set to something meaningful. |
|
37 # Note that this is just a comment added to changesets, not the basis |
|
38 # of any authentication. |
|
39 #username = krauss |
|
40 |
|
41 |