-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.hgrc
50 lines (42 loc) · 916 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
# Mercurial config file
# Gary Oberbrunner 26-Jan-10
[ui]
username = Gary Oberbrunner <[email protected]>
# set default log style
style=~/.compact.hg.tmpl
#ssh="/Program Files (x86)/PuTTY/plink" -ssh
# Use basic conflict-marker merge style (no fancy tools)
merge=internal:merge
[extensions]
rebase=
bookmarks=
hgext.graphlog=
hgext.mq=
transplant=
fetch=
record=
hgk=
shelve=
histedit=
[bookmarks]
# behave more like git; only move the current bookmark on commit
track.current=True
[diff]
# git-format diffs (nicer?)
git=1
# prevent patch from updating file dates
nodates=1
[phases]
publish = False
# for "hg serve"
[web]
allow_push = *
push_ssl = false
[hooks]
# Prevent "hg push" if MQ patches are applied.
# (only works on Linux I guess -- must use cmd shell)
# preoutgoing.mq-no-push = ! hg qtop > /dev/null 2>&1
[alias]
llog = glog -l 5
# show a given changeset, e.g. "hg show 12345"
show = log -pr