Mercurial > repos > other > linux
annotate hgrc @ 14:48de4a1fca26
Add a log template to take advantage of "phases" feature that's been in Mercurial for ages
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Tue, 05 Aug 2014 19:34:14 +0000 |
parents | 4268b51e6b73 |
children | 710955cdb377 |
rev | line source |
---|---|
1 | 1 [ui] |
2 username = IBBoard <dev@ibboard.co.uk> | |
3 merge = meld | |
14
48de4a1fca26
Add a log template to take advantage of "phases" feature that's been in Mercurial for ages
IBBoard <dev@ibboard.co.uk>
parents:
10
diff
changeset
|
4 logtemplate='[{phase}] {desc} ({node|short})' |
1 | 5 |
7 | 6 [trusted] |
10
4268b51e6b73
Add modular login credentials (to avoid version controlling them) and CA support (for StartSSL on CentOS)
IBBoard <dev@ibboard.co.uk>
parents:
9
diff
changeset
|
7 #Trust root (mainly for VPS running, where some repos are owned by root and we want to do "hg status" without sudo-ing) |
4268b51e6b73
Add modular login credentials (to avoid version controlling them) and CA support (for StartSSL on CentOS)
IBBoard <dev@ibboard.co.uk>
parents:
9
diff
changeset
|
8 #If we don't trust root then we're screwed anyway! |
7 | 9 users = root |
10 | |
1 | 11 [alias] |
12 copush = !$HG commit $@ && $HG push | |
13 view = hgview | |
14 | |
15 [extensions] | |
16 extdiff = | |
3
2a6d32a03c0e
Work around differing paths for hgview
IBBoard <dev@ibboard.co.uk>
parents:
1
diff
changeset
|
17 hgext.hgview = ~/.hgview.py |
1 | 18 bookmarks = |
19 hgext.convert= | |
20 color = | |
21 pager = | |
22 progress = | |
23 mercurial_keyring = | |
24 | |
25 [extdiff] | |
7 | 26 cmd.meld = meld |
9
3728d07afc2c
Trust system's CA bundle (otherwise StartSSL certs weren't accepted)
IBBoard <dev@ibboard.co.uk>
parents:
7
diff
changeset
|
27 |
10
4268b51e6b73
Add modular login credentials (to avoid version controlling them) and CA support (for StartSSL on CentOS)
IBBoard <dev@ibboard.co.uk>
parents:
9
diff
changeset
|
28 %include ~/.hgrc-certs |
4268b51e6b73
Add modular login credentials (to avoid version controlling them) and CA support (for StartSSL on CentOS)
IBBoard <dev@ibboard.co.uk>
parents:
9
diff
changeset
|
29 |
4268b51e6b73
Add modular login credentials (to avoid version controlling them) and CA support (for StartSSL on CentOS)
IBBoard <dev@ibboard.co.uk>
parents:
9
diff
changeset
|
30 %include ~/.hgrc-auth |