-
Notifications
You must be signed in to change notification settings - Fork 0
/
user
25 lines (22 loc) · 1020 Bytes
/
user
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
#
# scott@smemsh.net
# https://github.com/smemsh/.gitcli/
[user]
# our user.name is always the same, but user.email differs between work and
# personal repositories, so force an explicit decision to be made about what
# email address is used for the commits by instructing git to only use config
# (never infer), but leaving it unset for the global case
# note: this requires git 2.8.0 to work
#
name = Scott Mcdermott
useConfigOnly = true
#email =
# unfortunately signingKey is not subject to useConfigOnly; it merely calls
# gpg without any specified key and lets gpg make the decision (which is
# usually wrong: it uses the first key it finds that matches the email, rather
# than the newest key). since we are only at this time signing with the one
# key, this isn't an issue and we just set it globally, but really (TODO) git
# should be changed so that user.useConfigOnly really requires config for
# *every* user.* variable in the whole namespace
#
signingKey = 0xF315433C9D09B4DF