-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.hgrc
66 lines (60 loc) · 2.39 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
64
65
66
[ui]
username = Augustin Trancart <augustin.trancart@gmail.com>
merge = meld
tweakdefaults = true
interface = curses
[diff]
git = 1
showfunc = 1
unified = 8
[defaults]
commit = -v
qnew = -Ue
[extensions]
mq =
purge =
rebase =
histedit =
reviewboard = /home/augustin/.mozbuild/version-control-tools/hgext/reviewboard/client.py
bzexport = /home/augustin/.mozbuild/version-control-tools/hgext/bzexport
bzpost = /home/augustin/.mozbuild/version-control-tools/hgext/bzpost
firefoxtree = /home/augustin/.mozbuild/version-control-tools/hgext/firefoxtree
bundleclone = /home/augustin/.mozbuild/version-control-tools/hgext/bundleclone
push-to-try = /home/augustin/.mozbuild/version-control-tools/hgext/push-to-try
mqext = /home/augustin/.mozbuild/version-control-tools/hgext/mqext
qimportbz = /home/augustin/.mozbuild/version-control-tools/hgext/qimportbz
absorb =
evolve = /home/augustin/.mozbuild/evolve/hgext3rd/evolve
blackbox =
[mq]
plain = True
[paths]
try = ssh://hg.mozilla.org/try/
[hooks]
pre-push = read -p 'Are you sure you want to push to remote? (y/n): '; if test "$REPLY" != "y"; then echo 'Push cancelled'; exit 1; fi
[bugzilla]
username = augustin.trancart@gmail.com
[hostsecurity]
bitbucket.org:fingerprints = sha256:4e:65:3e:76:0f:81:59:85:5b:50:06:0c:c2:4d:3c:56:53:8b:83:3e:9b:fa:55:26:98:9a:ca:e2:25:03:92:47
[alias]
wip = log --graph --rev=wip --template=wip
smart-annotate = annotate -w --skip ignored_changesets
[revsetalias]
wip = (parents(not public()) or not public() or . or (head() and branch(default))) and (not obsolete() or orphan()^) and not closed() and not (fxheads() - date(-90))
ignored_changesets = desc("ignore-this-changeset") or extdata(get_ignored_changesets)
[templates]
wip = '{label("wip.branch", if(branches,"{branches} "))}{label(ifeq(graphnode,"x","wip.obsolete","wip.{phase}"),"{rev}:{node|short}")}{label("wip.user", " {author|user}")}{label("wip.tags", if(tags," {tags}"))}{label("wip.tags", if(fxheads," {fxheads}"))}{if(bookmarks," ")}{label("wip.bookmarks", if(bookmarks,bookmarks))}{label(ifcontains(rev, revset("parents()"), "wip.here"), " {desc|firstline}")}'
[color]
wip.bookmarks = yellow underline
wip.branch = yellow
wip.draft = green
wip.here = red
wip.obsolete = none
wip.public = blue
wip.tags = yellow
wip.user = magenta
[experimental]
graphshorten = true
[extdata]
get_ignored_changesets = shell:cat `hg root`/.hg-annotate-ignore-revs 2> /dev/null || true
%include ~/.localhgrc