Mercurial > dotfiles
annotate .hgrc @ 100:9d09939f1100
hgrc: alias is part of core Merucial now.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Wed, 10 Jun 2009 11:17:24 -0400 |
parents | b958738c16f3 |
children | 57cbf4b59097 |
rev | line source |
---|---|
0 | 1 [extensions] |
21 | 2 hgext.bookmarks= |
9
a6581f7a5b1a
Enable the color extension for hg.
Augie Fackler <durin42@gmail.com>
parents:
2
diff
changeset
|
3 hgext.color= |
0 | 4 hgext.convert= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
5 hgext.graphlog= |
36 | 6 hgext.highlight= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
7 hgext.hgk= |
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
8 hgext.mq= |
0 | 9 hgext.parentrevspec= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
10 hgext.patchbomb= |
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
11 hgext.purge= |
0 | 12 hgext.rebase= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
13 hgext.record= |
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
14 hgext.transplant= |
86
68f53fa09e99
Moving all clojure stuff to a more self-contained area.
Augie Fackler <durin42@gmail.com>
parents:
78
diff
changeset
|
15 # hgext.zeroconf= |
87 | 16 hgsubversion= |
40 | 17 hggit= |
71 | 18 histedit= |
0 | 19 |
87 | 20 [merge-tools] |
21 filemerge.executable = opendiff-w | |
22 filemerge.args = $local $other -ancestor $base -merge $output | |
23 | |
23
e1caf3e773a8
Need an alias to do log of a named branch
Augie Fackler <durin42@gmail.com>
parents:
21
diff
changeset
|
24 [alias] |
68
e4aa44f30f2c
Remove bad default from log.
Augie Fackler <durin42@gmail.com>
parents:
53
diff
changeset
|
25 ll=log --graph -l 6 |
23
e1caf3e773a8
Need an alias to do log of a named branch
Augie Fackler <durin42@gmail.com>
parents:
21
diff
changeset
|
26 |
0 | 27 [ui] |
28 username = Augie Fackler <durin42@gmail.com> | |
29 style = compact | |
26 | 30 ignore = ~/.hgglobalignore |
0 | 31 |
32 [defaults] | |
33 qimport = --git | |
34 qrefresh = --git | |
35 annotate = -nu | |
36 heads = --style default | |
37 serve = -v | |
2
cc09fbf53d4d
Add --graph to default for out/in/log and remove the no-longer-needed glog pref.
Augie Fackler <durin42@gmail.com>
parents:
1
diff
changeset
|
38 outgoing = --graph |
86
68f53fa09e99
Moving all clojure stuff to a more self-contained area.
Augie Fackler <durin42@gmail.com>
parents:
78
diff
changeset
|
39 # --graph is breaking incoming, need to investigate |
68f53fa09e99
Moving all clojure stuff to a more self-contained area.
Augie Fackler <durin42@gmail.com>
parents:
78
diff
changeset
|
40 # incoming = --graph |
0 | 41 diff = -p |
42 | |
43 [diff] | |
44 git=1 | |
45 | |
46 [web] | |
47 style = gitweb | |
48 port=7000 | |
49 allow_archive = bz2 zip | |
50 | |
20
a7d20c040af0
Don't use black for ignored files since I have a black terminal background.
Augie Fackler <durin42@gmail.com>
parents:
15
diff
changeset
|
51 [color] |
a7d20c040af0
Don't use black for ignored files since I have a black terminal background.
Augie Fackler <durin42@gmail.com>
parents:
15
diff
changeset
|
52 status.ignored = magenta bold |
a7d20c040af0
Don't use black for ignored files since I have a black terminal background.
Augie Fackler <durin42@gmail.com>
parents:
15
diff
changeset
|
53 |
0 | 54 [paths] |
55 hgcrew = http://hg.intevation.org/mercurial/crew | |
48 | 56 hgsubv = ssh://hg@bitbucket.org/durin42/hgsubversion/ |
53 | 57 hggit = ssh://hg@bitbucket.org/durin42/hggit/ |
72 | 58 histedit = ssh://hg@bitbucket.org/durin42/histedit/ |
0 | 59 |
60 [hooks] | |
61 # Prevent "hg pull" if MQ patches are applied. | |
62 #prechangegroup.mq-no-pull = ! hg qtop > /dev/null 2>&1 | |
63 # Prevent "hg push" if MQ patches are applied. | |
64 #preoutgoing.mq-no-push = ! hg qtop > /dev/null 2>&1 |