-
Notifications
You must be signed in to change notification settings - Fork 0
/
.hgrc
36 lines (33 loc) · 1.14 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
# Save this file as %USERPROFILE%\mercurial.ini or ~/.hgrc
[extensions]
convert =
purge =
hggit =
graphlog =
highlight =
mq =
rebase =
shelve =
strip =
zeroconf =
[alias]
show = log -Cpr
slog = log --template '{rev}:{node|short} {date|shortdate} {pad(author,15)} {desc|firstline} (http://gcvc01.webb.net.br/hg/rev/{node|short})\n'
statlog = log --template '{rev}:{node|short} {date|shortdate} {pad(author,15)} ({pad(diffstat,12," ",True)}) {desc|firstline}\n' -M --removed
cf = status -qC --rev
nudge = push --rev .
bc = bundle --base .^ -r .::
clean = clean --abort-on-err
cleana = clean --all
qic = !%HG% qimport -r .:: && %HG% qpop -a $@
qfa = !%HG% qpush -a $@ && %HG% qfinish -a
metaimport = !%HG% export $@ | %HG% import --user "%HGUSER%" --bypass -
metaimportnc = !%HG% export $@ | %HG% import --user "%HGUSER%" --no-commit --similarity 50 -
upc = !%HG% cleana && %HG% up -C -r . $@
upcr = !%HG% cleana && %HG% up -C $@
ul = !%HG% --config ui.merge=internal:local up $@
uo = !%HG% --config ui.merge=internal:other up $@
ml = merge --tool internal:local
mo = merge --tool internal:other
mi = !%HG% metaimport $@
minc = !%HG% metaimportnc $@