comparison hgrc-basic @ 7:5b2d9e3d58c6

Add hgrc-basic
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Thu, 06 Nov 2014 17:09:06 -0500
parents hgrc-256color@686c15b59a30
children
comparison
equal deleted inserted replaced
6:686c15b59a30 7:5b2d9e3d58c6
1 [ui]
2 # Your name and email, e.g.
3 # username = Jane Doe <jdoe@example.com>
4 username =
5
6 # Your editor of choice, e.g. Emacs, vim, Notepad++, TextMate...
7 # editor = emacs
8 editor =
9
10 # Some useful aliases
11 [alias]
12 glog=log -G
13
14
15 [extensions]
16 # Basic useful extensions. These are all safe.
17 color=
18 progress=
19 pager =
20 record=
21
22 # The pager needs some extra config to work right...
23 [pager]
24 pager = LESS='FSRX' less
25 attend = tags, help, annotate, cat, diff, export, status,\
26 outgoing, incoming, glog, log, grep, sl, pvr, wip
27
28 # This makes diffs show more information
29 [diff]
30 git = true
31 showfunc = 1
32
33 # These are basic ANSI colours (i.e. not very colourful)
34 [color]
35 status.modified = magenta bold
36 status.added = green bold
37 status.removed = red bold
38 status.deleted = cyan bold
39 status.unknown = black bold
40 status.ignored = black bold
41 log.branch = cyan
42 log.summary = yellow
43 log.description = yellow
44 log.bookmark = green
45 log.tag = yellow
46 log.graph = blue
47
48 changeset.public = red bold
49 changeset.draft = yellow
50 changeset.secret = blue
51
52 qdesc.here = bold blue_background
53
54 # I push and pull a lot with local clones, so don't make my local
55 # clones publish those commits.
56 [phases]
57 publish = False