Mercurial > dotfiles
annotate .hgrc @ 23:e1caf3e773a8
Need an alias to do log of a named branch
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Tue, 16 Dec 2008 11:28:11 -0600 |
parents | b465892f75e4 |
children | 895bcf0db86a |
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= |
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= |
0 | 15 hgext.zeroconf= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
16 hgsubversion= |
0 | 17 |
23
e1caf3e773a8
Need an alias to do log of a named branch
Augie Fackler <durin42@gmail.com>
parents:
21
diff
changeset
|
18 [alias] |
e1caf3e773a8
Need an alias to do log of a named branch
Augie Fackler <durin42@gmail.com>
parents:
21
diff
changeset
|
19 # because the --graph default to log breaks log -b |
e1caf3e773a8
Need an alias to do log of a named branch
Augie Fackler <durin42@gmail.com>
parents:
21
diff
changeset
|
20 blog=log -b |
e1caf3e773a8
Need an alias to do log of a named branch
Augie Fackler <durin42@gmail.com>
parents:
21
diff
changeset
|
21 |
0 | 22 [ui] |
23 username = Augie Fackler <durin42@gmail.com> | |
24 style = compact | |
25 | |
26 [defaults] | |
27 qimport = --git | |
28 qrefresh = --git | |
29 annotate = -nu | |
30 heads = --style default | |
31 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
|
32 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
|
33 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
|
34 incoming = --graph |
0 | 35 diff = -p |
36 | |
37 [diff] | |
38 git=1 | |
39 | |
40 [web] | |
41 style = gitweb | |
42 port=7000 | |
43 allow_archive = bz2 zip | |
44 | |
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
|
45 [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
|
46 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
|
47 |
0 | 48 [paths] |
49 hgcrew = http://hg.intevation.org/mercurial/crew | |
50 hgbookmarks = http://www.bitbucket.org/segv/hgbookmarks | |
51 hgsubv = https://durin42@bitbucket.org/durin42/hgsubversion | |
52 | |
53 [hooks] | |
54 # Prevent "hg pull" if MQ patches are applied. | |
55 #prechangegroup.mq-no-pull = ! hg qtop > /dev/null 2>&1 | |
56 # Prevent "hg push" if MQ patches are applied. | |
57 #preoutgoing.mq-no-push = ! hg qtop > /dev/null 2>&1 |