-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_hgrc
63 lines (51 loc) · 2.13 KB
/
_hgrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[ui]
merge = vimdiff
username = Yury Khalyavin <[email protected]>
verbose = True
[extensions]
color =
pager =
rebase =
shelve =
strip =
crecord = /home/ykhalyavin/hg/crecord/crecord
#mercurial_keyring =
[pager]
pager = LESS=FRSXQ less
quiet = True
attend = diff,status,log,qdiff,blame,annotate,pdiff,glog,show,lg,lgfiles,wip
[auth]
ui.prefix = https://hg.iponweb.net/bidswitch/ui/
ui.username = ykhalyavin
# http://jordi.inversethought.com/blog/customising-mercurial-like-a-pro/
[revsetalias]
wip = (parents(not public()) or not public() or . or head()) and (not obsolete() or unstable()^) and not closed()
[templates]
wip = '{label("log.branch", branches)} {label("changeset.{phase}", node|short)} {label("grep.user", author|person)}{label("log.tag", if(tags," {tags}"))} {label("log.bookmark", if(bookmarks," {bookmarks}"))}{label('log.date', date(date, '%Y-%m-%d %H:%M'))}\n{label(ifcontains(rev, revset('.'), 'desc.here'),desc|firstline)}\n'
[color]
mode=ansi
#Custom colours
color.orange=202
color.lightyellow=191
color.darkorange=220
color.brightyellow=226
#Colours for each label
log.branch=cyan
log.summary=yellow
log.description=yellow
log.bookmark=green
log.tag=yellow bold
log.branch=yellow
log.graph=blue
log.date = green
changeset.public=cyan
#changeset.public=orange bold
#changeset.secret=blue bold
#changeset.draft=brightyellow bold
desc.here=bold blue_background
[alias]
bparent = log -r "parents(min(branch($1)))"
wip = log --graph --rev=wip --template=wip
lg = log --graph --template=wip
#lgfiles = log -G --template "{label('custom.tags', '{tags}')}{if(tags,'|','')}{ifcontains(rev, revset'.'), label('custom.here', '{node|short}|{branch}'), label('custom.rev', '{node|short}|{branch}'))} - {label('custom.date', date(date, '%Y-%m-%d %H:%M'))} {label('custom.desc', desc|strip|firstline)} %{label('custom.author', author|person)}\n{join(files,'\n')}\n"ains(rev, %revset'.'), label('custom.here', '{node|short}|{branch}'), %label('custom.rev', '{node|short}|{branch}'))} - {label('custom.date', %date(date, '%Y-%m-%d %H:%M'))} {label('custom.desc', desc|strip|firstline)} %{label('custom.author', author|person)}\n{join(files,'\n')}\n"
# vim:tw=0