Mercurial > dotfiles
annotate .hgrc @ 10:b4bfce76123f
Reorder these checks. With my home being in hg, it was winning over any other
checkouts. Now look for hg last.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Tue, 02 Dec 2008 19:53:38 -0600 |
parents | a6581f7a5b1a |
children | a757a99bc885 |
rev | line source |
---|---|
0 | 1 [extensions] |
9
a6581f7a5b1a
Enable the color extension for hg.
Augie Fackler <durin42@gmail.com>
parents:
2
diff
changeset
|
2 hgext.color= |
0 | 3 hgext.hgk= |
4 hgext.record= | |
5 hgext.convert= | |
6 hgext.mq = | |
7 hgext.parentrevspec= | |
8 hgext.transplant= | |
9 hgext.rebase= | |
10 hgsubversion= | |
11 hgext.zeroconf= | |
12 hgext.patchbomb= | |
13 hgext.graphlog= | |
14 | |
15 [ui] | |
16 username = Augie Fackler <durin42@gmail.com> | |
17 style = compact | |
18 | |
19 [defaults] | |
20 qimport = --git | |
21 qrefresh = --git | |
22 annotate = -nu | |
23 heads = --style default | |
24 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
|
25 log = -l 6 --graph |
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
|
26 outgoing = --graph |
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
|
27 incoming = --graph |
0 | 28 diff = -p |
29 | |
30 [diff] | |
31 git=1 | |
32 | |
33 [web] | |
34 style = gitweb | |
35 port=7000 | |
36 allow_archive = bz2 zip | |
37 | |
38 [paths] | |
39 hgcrew = http://hg.intevation.org/mercurial/crew | |
40 hgbookmarks = http://www.bitbucket.org/segv/hgbookmarks | |
41 hgsubv = https://durin42@bitbucket.org/durin42/hgsubversion | |
42 | |
43 [hooks] | |
44 # Prevent "hg pull" if MQ patches are applied. | |
45 #prechangegroup.mq-no-pull = ! hg qtop > /dev/null 2>&1 | |
46 # Prevent "hg push" if MQ patches are applied. | |
47 #preoutgoing.mq-no-push = ! hg qtop > /dev/null 2>&1 |