3d2a12ce4c81adfbf7fa15ff97dce34533bc794e
[profile] / gitconfig
1 ### -*-conf-*-
2 ### Git configuration
3
4 [core]
5 filemode = true
6 excludesfile = @gitignore@
7
8 [user]
9 name = Mark Wooding
10 email = mdw@distorted.org.uk
11 signingkey = @releasekey@
12
13 [merge]
14 summary = true
15 tool = emerge
16
17 [mergetool "emerge"]
18 path = emerge-hack
19
20 [diff]
21 renames = copies
22
23 [format]
24 headers = "Organization: Straylight/Edgeware\n"
25
26 [color]
27 diff = auto
28 status = auto
29 branch = auto
30
31 [color "diff"]
32 plain = normal
33 meta = bold
34 new = green
35 old = red
36 commit = bold yellow
37 whitespace = reverse red
38
39 [color "status"]
40 header = bold
41 added = bold green
42 changed = bold blue
43 untracked = bold red
44
45 [color "branch"]
46 current = bold
47 local = normal
48 remote = cyan
49
50 [alias]
51 egrep = "grep -E"
52 patch = "format-patch -o p -s"
53 release = !"sh -e -c ' \
54 [ $# -gt 0 ] || { \
55 echo >&2 \"usage: git release TAG [OPTS]\"; \
56 exit 1; \
57 }; \
58 git tag -as -m \"Release $1.\" \"$@\"' release"
59 amend = !"env EDITOR=true VISUAL=true git commit --amend -a"
60 spaces = !"sh -e -c 'git ls-files -z \"$@\"| \
61 xargs -0r space -cv' spaces"
62 mailto = "send-email \
63 --quiet \
64 --no-chain-reply-to \
65 --no-signed-off-by-cc \
66 --to"
67 files = "ls-files --exclude-standard"
68
69 [stgit]
70 autoresolved = yes
71 smtpdelay = 0
72
73 [mail "alias"]
74 git = git@vger.kernel.org
75 mdw = mdw@distorted.org.uk
76
77 [sendemail]
78 chainreplyto = no
79 signedoffcc = yes
80
81 [gui]
82 fontui = -family Sans -size 10
83 fontdiff = -family MiscFixed6x13 -size 10