Mercurial > dotfiles
annotate .hgrc @ 21:b465892f75e4
Start using bookmarks.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Fri, 12 Dec 2008 09:34:20 -0600 |
parents | a7d20c040af0 |
children | e1caf3e773a8 |
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= |
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
6 hgext.hgk= |
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
7 hgext.mq= |
0 | 8 hgext.parentrevspec= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
9 hgext.patchbomb= |
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
10 hgext.purge= |
0 | 11 hgext.rebase= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
12 hgext.record= |
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
13 hgext.transplant= |
0 | 14 hgext.zeroconf= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
15 hgsubversion= |
0 | 16 |
17 [ui] | |
18 username = Augie Fackler <durin42@gmail.com> | |
19 style = compact | |
20 | |
21 [defaults] | |
22 qimport = --git | |
23 qrefresh = --git | |
24 annotate = -nu | |
25 heads = --style default | |
26 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
|
27 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
|
28 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
|
29 incoming = --graph |
0 | 30 diff = -p |
31 | |
32 [diff] | |
33 git=1 | |
34 | |
35 [web] | |
36 style = gitweb | |
37 port=7000 | |
38 allow_archive = bz2 zip | |
39 | |
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
|
40 [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
|
41 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
|
42 |
0 | 43 [paths] |
44 hgcrew = http://hg.intevation.org/mercurial/crew | |
45 hgbookmarks = http://www.bitbucket.org/segv/hgbookmarks | |
46 hgsubv = https://durin42@bitbucket.org/durin42/hgsubversion | |
47 | |
48 [hooks] | |
49 # Prevent "hg pull" if MQ patches are applied. | |
50 #prechangegroup.mq-no-pull = ! hg qtop > /dev/null 2>&1 | |
51 # Prevent "hg push" if MQ patches are applied. | |
52 #preoutgoing.mq-no-push = ! hg qtop > /dev/null 2>&1 |