configs  Check-in [d62b6fab64]

Overview
Comment:gitconfig: Don't use gpgsign = true

The reason is that this causes all kinds of operations to sign, many
even sign multiple times. This option is completely unusable with a
smartcard that requires a PIN. Instead, only sign when commiting using
ci.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: d62b6fab64b8187e8fad26e057dd2c31eb55dbfc19b8b3297988d9e36312b62b
User & Date: js on 2015-02-15 19:31:20
Other Links: manifest | tags
Context
2015-04-12
15:39
objc.vim: Add of_stat_t and of_socket_t check-in: e78b6a8cac user: js tags: trunk
2015-02-15
19:31
gitconfig: Don't use gpgsign = true check-in: d62b6fab64 user: js tags: trunk
19:28
tmux.conf: Set TERM to screen-256color check-in: ad1cf50dbb user: js tags: trunk
Changes

Modified gitconfig from [a0cbb38145] to [27cd980840].

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
[user]
	name = Jonathan Schleifer
	email = js@webkeks.org

[color]
	ui = auto
	interactive = auto

[alias]
	ci = commit
	co = checkout
	d = diff
	ds = diff --staged
	slog = log --show-signature
	sshow = show --show-signature
	st = status -s

[format]
	signature = Jonathan

[core]
	editor = vim

[push]
	default = matching

[commit]
	gpgsign = true

[gpg]
	program = gpg2









|
















<
<
<


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
[user]
	name = Jonathan Schleifer
	email = js@webkeks.org

[color]
	ui = auto
	interactive = auto

[alias]
	ci = commit -S
	co = checkout
	d = diff
	ds = diff --staged
	slog = log --show-signature
	sshow = show --show-signature
	st = status -s

[format]
	signature = Jonathan

[core]
	editor = vim

[push]
	default = matching




[gpg]
	program = gpg2