Mercurial > dotfiles
annotate .hgrc @ 3:1921c0b85a82
Handy keybindings.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Wed, 26 Nov 2008 18:47:20 -0600 |
parents | cc09fbf53d4d |
children | a6581f7a5b1a |
rev | line source |
---|---|
0 | 1 [extensions] |
2 hgext.hgk= | |
3 hgext.record= | |
4 hgext.convert= | |
5 hgext.mq = | |
6 hgext.parentrevspec= | |
7 hgext.transplant= | |
8 hgext.rebase= | |
9 hgsubversion= | |
10 hgext.zeroconf= | |
11 hgext.patchbomb= | |
12 hgext.graphlog= | |
13 | |
14 [ui] | |
15 username = Augie Fackler <durin42@gmail.com> | |
16 style = compact | |
17 | |
18 [defaults] | |
19 qimport = --git | |
20 qrefresh = --git | |
21 annotate = -nu | |
22 heads = --style default | |
23 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
|
24 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
|
25 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
|
26 incoming = --graph |
0 | 27 diff = -p |
28 | |
29 [diff] | |
30 git=1 | |
31 | |
32 [web] | |
33 style = gitweb | |
34 port=7000 | |
35 allow_archive = bz2 zip | |
36 | |
37 [paths] | |
38 hgcrew = http://hg.intevation.org/mercurial/crew | |
39 hgbookmarks = http://www.bitbucket.org/segv/hgbookmarks | |
40 hgsubv = https://durin42@bitbucket.org/durin42/hgsubversion | |
41 | |
42 [hooks] | |
43 # Prevent "hg pull" if MQ patches are applied. | |
44 #prechangegroup.mq-no-pull = ! hg qtop > /dev/null 2>&1 | |
45 # Prevent "hg push" if MQ patches are applied. | |
46 #preoutgoing.mq-no-push = ! hg qtop > /dev/null 2>&1 |