-
Notifications
You must be signed in to change notification settings - Fork 0
/
hgrc
50 lines (38 loc) · 737 Bytes
/
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
[ui]
username = jdkoren
merge = internal:merge3
editor = subl -n -w
rollback = true
[extensions]
strip =
journal =
purge =
rebase =
[pager]
ignore = status, version
[histedit]
abbreviateCommands = true
[trainingwheels]
prevent-revert--all=false
prevent-push-dirty=false
prevent-strip=false
[alias]
alias = !hg config | grep 'alias\.' | sed 's/alias\.\([^=]*\)=\(.*\)/\1\ => \2/' | less
df = diff -g
show = log -pr
bm = bookmark
bmd = bookmark -d
a = add
c = commit
cm = commit -m
ci = commit -i
h = help --verbose
reva = revert --all
rb = rebase
rbc = rebase --continue
rba = rebase --abort
rbi = rebase --interactive
rbr = resolve --mark
rbra = resolve -a
mine = resolve -t internal:local
theirs = resolve -t internal:other