Mercurial > dotfiles
annotate .hgrc @ 86:68f53fa09e99
Moving all clojure stuff to a more self-contained area.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Wed, 15 Apr 2009 22:28:20 -0500 |
parents | 5e1439dd9ee1 |
children | b958738c16f3 |
rev | line source |
---|---|
0 | 1 [extensions] |
23
e1caf3e773a8
Need an alias to do log of a named branch
Augie Fackler <durin42@gmail.com>
parents:
21
diff
changeset
|
2 hgext.alias= |
21 | 3 hgext.bookmarks= |
9
a6581f7a5b1a
Enable the color extension for hg.
Augie Fackler <durin42@gmail.com>
parents:
2
diff
changeset
|
4 hgext.color= |
0 | 5 hgext.convert= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
6 hgext.graphlog= |
36 | 7 hgext.highlight= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
8 hgext.hgk= |
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
9 hgext.mq= |
0 | 10 hgext.parentrevspec= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
11 hgext.patchbomb= |
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
12 hgext.purge= |
0 | 13 hgext.rebase= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
14 hgext.record= |
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
15 hgext.transplant= |
86
68f53fa09e99
Moving all clojure stuff to a more self-contained area.
Augie Fackler <durin42@gmail.com>
parents:
78
diff
changeset
|
16 # hgext.zeroconf= |
68f53fa09e99
Moving all clojure stuff to a more self-contained area.
Augie Fackler <durin42@gmail.com>
parents:
78
diff
changeset
|
17 hgsubversion=/Stuff/hgsubversion |
40 | 18 hggit= |
71 | 19 histedit= |
0 | 20 |
23
e1caf3e773a8
Need an alias to do log of a named branch
Augie Fackler <durin42@gmail.com>
parents:
21
diff
changeset
|
21 [alias] |
68
e4aa44f30f2c
Remove bad default from log.
Augie Fackler <durin42@gmail.com>
parents:
53
diff
changeset
|
22 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
|
23 |
0 | 24 [ui] |
25 username = Augie Fackler <durin42@gmail.com> | |
26 style = compact | |
26 | 27 ignore = ~/.hgglobalignore |
0 | 28 |
29 [defaults] | |
30 qimport = --git | |
31 qrefresh = --git | |
32 annotate = -nu | |
33 heads = --style default | |
34 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
|
35 outgoing = --graph |
86
68f53fa09e99
Moving all clojure stuff to a more self-contained area.
Augie Fackler <durin42@gmail.com>
parents:
78
diff
changeset
|
36 # --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
|
37 # incoming = --graph |
0 | 38 diff = -p |
39 | |
40 [diff] | |
41 git=1 | |
42 | |
43 [web] | |
44 style = gitweb | |
45 port=7000 | |
46 allow_archive = bz2 zip | |
47 | |
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
|
48 [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
|
49 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
|
50 |
0 | 51 [paths] |
52 hgcrew = http://hg.intevation.org/mercurial/crew | |
48 | 53 hgsubv = ssh://hg@bitbucket.org/durin42/hgsubversion/ |
53 | 54 hggit = ssh://hg@bitbucket.org/durin42/hggit/ |
72 | 55 histedit = ssh://hg@bitbucket.org/durin42/histedit/ |
0 | 56 |
57 [hooks] | |
58 # Prevent "hg pull" if MQ patches are applied. | |
59 #prechangegroup.mq-no-pull = ! hg qtop > /dev/null 2>&1 | |
60 # Prevent "hg push" if MQ patches are applied. | |
61 #preoutgoing.mq-no-push = ! hg qtop > /dev/null 2>&1 |