Mercurial > dotfiles
annotate .hgrc @ 112:57cbf4b59097
This works better for old versions of hggit.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Mon, 22 Jun 2009 13:33:46 -0500 |
parents | 9d09939f1100 |
children | a585b0d2b828 |
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= |
40 | 15 hggit= |
112
57cbf4b59097
This works better for old versions of hggit.
Augie Fackler <durin42@gmail.com>
parents:
100
diff
changeset
|
16 hgsubversion= |
71 | 17 histedit= |
0 | 18 |
87 | 19 [merge-tools] |
20 filemerge.executable = opendiff-w | |
21 filemerge.args = $local $other -ancestor $base -merge $output | |
22 | |
23
e1caf3e773a8
Need an alias to do log of a named branch
Augie Fackler <durin42@gmail.com>
parents:
21
diff
changeset
|
23 [alias] |
68
e4aa44f30f2c
Remove bad default from log.
Augie Fackler <durin42@gmail.com>
parents:
53
diff
changeset
|
24 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
|
25 |
0 | 26 [ui] |
27 username = Augie Fackler <durin42@gmail.com> | |
28 style = compact | |
26 | 29 ignore = ~/.hgglobalignore |
0 | 30 |
31 [defaults] | |
32 qimport = --git | |
33 qrefresh = --git | |
34 annotate = -nu | |
35 heads = --style default | |
36 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
|
37 outgoing = --graph |
86
68f53fa09e99
Moving all clojure stuff to a more self-contained area.
Augie Fackler <durin42@gmail.com>
parents:
78
diff
changeset
|
38 # --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
|
39 # incoming = --graph |
0 | 40 diff = -p |
41 | |
42 [diff] | |
43 git=1 | |
44 | |
45 [web] | |
46 style = gitweb | |
47 port=7000 | |
48 allow_archive = bz2 zip | |
49 | |
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
|
50 [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
|
51 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
|
52 |
0 | 53 [paths] |
54 hgcrew = http://hg.intevation.org/mercurial/crew | |
48 | 55 hgsubv = ssh://hg@bitbucket.org/durin42/hgsubversion/ |
53 | 56 hggit = ssh://hg@bitbucket.org/durin42/hggit/ |
72 | 57 histedit = ssh://hg@bitbucket.org/durin42/histedit/ |
0 | 58 |
59 [hooks] | |
60 # Prevent "hg pull" if MQ patches are applied. | |
61 #prechangegroup.mq-no-pull = ! hg qtop > /dev/null 2>&1 | |
62 # Prevent "hg push" if MQ patches are applied. | |
63 #preoutgoing.mq-no-push = ! hg qtop > /dev/null 2>&1 |