-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.hgrc
executable file
·67 lines (57 loc) · 2.51 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
#!/usr/bin/env bash
################################################################################
# FileName : .hgrc
# Description: Global configuration for Mercurial / hg.
# AUTHOR : SVAKSHA <http://svaksha.github.io/yaksha>
# COPYRIGHT© : 2005-Now SVAKSHA <http://svaksha.com/pages/Bio> AllRightsReserved
# DATES : Created, 2008Mar22 ; Updated, 2015sep25
# LICENSE : GNU AGPLv3 License <http://www.gnu.org/licenses/agpl.html>
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions: ALL copies of this
# work and repository forks must retain the Copyright, LICENSE(.md) notice and
# this permission notice in substantial portions of the software.
# See the [LICENSE.md](https://github.com/svaksha/yaksha/blob/master/LICENSE.md) file.
################################################################################
#
# http://www.selenic.com/mercurial/hg.1.html
#
# --- User interface --- #
[ui]
# show changed files, be verbose if True
verbose=True
username="SVAKSHA <[email protected]>" # username data to appear in commits
ignore = ~/.hgignore_global # ignore this file if working in another HG repo
# log repository events to a blackbox for debugging
[blackbox]
track = *
track = command, commandfinish, commandexception, exthook, pythonhook
track = incoming
# limit the size of a log file
maxsize = 1.5 MB
# rotate up to N log files when the current one gets too big
maxfiles = 3
[color]
mode = terminfo
color.brightblue = 12
color.pink = 207
color.orange = 202
status.modified = blue bold underline red_background
status.added = green bold
status.removed = red bold blue_background
status.deleted = cyan bold underline
status.unknown = magenta bold underline
status.ignored = black bold
[graph]
# Web graph view configuration section to change elements display property per branch.
default.width = 2 # 2px width
default.color = FF0000 # make the default branch stand out in RED.
[hooks]
changegroup.update = hg update # update working directory after adding changesets
[paths]
default = http://bitbucket.org/svaksha
[phases]
publish = False