el/dot-emacs.el: Inhibit raising frames.
[profile] / dot / gitconfig.in
CommitLineData
5622a4e0
MW
1### -*-conf-*-
2### Git configuration
3
5d2b7dab
MW
4[core]
5 filemode = true
73165cde 6 excludesfile = @profile@/git/gitignore
d3f879c6 7 attributesfile = @profile@/git/attributes
5d2b7dab 8
ad43d821
MW
9[user]
10 name = Mark Wooding
7dc35f04 11 email = mdw@distorted.org.uk
ce178f96 12 signingkey = @releasekey@
ad43d821
MW
13
14[merge]
15 summary = true
547fb8af
MW
16 tool = emerge
17
18[mergetool "emerge"]
19 path = emerge-hack
ad43d821
MW
20
21[diff]
ad43d821 22 renames = copies
755f6621 23 renameLimit = 1024
ca475e8d 24 wordRegex = [[:alnum:]]+|[^[:space:][:alnum:]]
e818009e 25
2a39ff36 26[diff "lisp"]
085ca2e7 27 xfuncname = "^((\\(|\\s*\\(def).*$)"
2a39ff36 28
3b73ac92
MW
29[log]
30 date = rfc
31 decorate = true
32
518aede4
MW
33[rebase]
34 autosquash = true
35
5d2b7dab
MW
36[format]
37 headers = "Organization: Straylight/Edgeware\n"
38
e818009e 39[color]
3b73ac92 40 ui = auto
5d2b7dab
MW
41
42[color "diff"]
43 plain = normal
44 meta = bold
8b6bc589
MW
45 new = green
46 old = red
5d2b7dab
MW
47 commit = bold yellow
48 whitespace = reverse red
49
49f353d7 50[color "interactive"]
726466db
MW
51 prompt = bold yellow
52 header = bold
53 help = green
54 error = bold red
49f353d7 55
5d2b7dab
MW
56[color "status"]
57 header = bold
58 added = bold green
59 changed = bold blue
60 untracked = bold red
61
62[color "branch"]
63 current = bold
64 local = normal
65 remote = cyan
66
49f353d7
MW
67[color "grep"]
68 external = --color=always
69
5d2b7dab
MW
70[alias]
71 egrep = "grep -E"
72 patch = "format-patch -o p -s"
3b73ac92 73 graph = "log --pretty=oneline --abbrev-commit --graph"
7e2c05e9 74 release = !"sh -e -c ' \
cef39ac8 75 [ $# -gt 0 ] || { \
5622a4e0 76 echo >&2 \"usage: git release TAG [OPTS]\"; \
cef39ac8
MW
77 exit 1; \
78 }; \
5622a4e0 79 git tag -as -m \"Release $1.\" \"$@\"' release"
6fc9ca84 80 amend = !"env EDITOR=true VISUAL=true git commit --amend -a"
5622a4e0
MW
81 spaces = !"sh -e -c 'git ls-files -z \"$@\"| \
82 xargs -0r space -cv' spaces"
5d2b7dab
MW
83 mailto = "send-email \
84 --quiet \
85 --no-chain-reply-to \
86 --no-signed-off-by-cc \
87 --to"
9931fa54 88 files = "ls-files --exclude-standard"
307d3be5
MW
89 unstg = !"sh -e -c ' \
90 : ${GIT_DIR=$(git rev-parse --git-dir)}; \
91 if [ $# -eq 0 ]; then set -- \"$(stg branch)\"; fi; \
92 for branch; do \
93 rmdir \"$GIT_DIR/patches/$branch/patches\"; \
94 rm -rf \"$GIT_DIR/patches/$branch\"; \
95 git for-each-ref -s \
96 --format \"git update-ref -d %(refname) %(objectname)\" \
97 \"refs/patches/$branch\" \"refs/bases/$branch\" | \
98 sh -e; \
99 done' unstg"
f13876a5 100
f4daab03
MW
101[rerere]
102 enabled = yes
5ccb9ae3 103 autoupdate = yes
f4daab03 104
75d08fb2
MW
105[stgit]
106 autoresolved = yes
107 smtpdelay = 0
108
f13876a5
MW
109[mail "alias"]
110 git = git@vger.kernel.org
111 mdw = mdw@distorted.org.uk
547fb8af 112
560a4aa7 113[sendemail]
73165cde
MW
114 from = Mark Wooding <mdw@distorted.org.uk>
115 aliasesfile = @profile@/dot/mailrc
116 aliasfiletype = mailrc
560a4aa7 117 chainreplyto = no
73165cde
MW
118 signedoffbycc = yes
119 suppresscc = self
560a4aa7 120
ecaa0c5b 121[gui]
f444229a
MW
122 fontui = -family Sans -size 10
123 fontdiff = -family MiscFixed6x13 -size 10