-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
59 lines (43 loc) · 1.3 KB
/
.gitignore
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# man:gitignore(5)
# public keyring in the legacy format
/pubring.gpg
# lock file for public keyring in the legacy format
/pubring.gpg.lock
# public keyrings in the keybox format
#
# GnuPG defaults to `pubring.kbx`;
# alternate public keyrings may be specified with the options `--keyring` and `--primary-keyring`.
# Whenever I use alternate keyrings, I stick to the pattern `pubring-*.kbx`.
/pubring*.kbx
# backups of public keyrings in the keybox format
#
# https://lists.gnupg.org/pipermail/gnupg-users/2014-June/049915.html
pubring*.kbx~
# lock files for public keyrings in the keybox format
/pubring*.kbx.lock
# trust databases
#
# GnuPG defaults to `trustdb.gpg`;
# alternate trust databases may be specified with the option `--trustdb-name`.
# Whenever I use alternate trust databases, I stick to the pattern `trustdb-*.gpg`.
/trustdb*.gpg
# lock files for trust databases
/trustdb*.gpg.lock
# private keys
/private-keys-v1.d/
# pre-generated revocation certificates
#
# GnuPG generates a revocation certificate for every new key.
/openpgp-revocs.d/
# ¿?
/crls.d/
# ¿?
/random_seed
# ¿? by scdaemon(1)
/reader_*.status
# ¿?
/tofu.db
# see [`common/dotlock.c` in GnuPG repository](https://dev.gnupg.org/source/gnupg/browse/master/common/dotlock.c)
/.#lk*
# `gpg-card(1)` command history
/.gpg-card_history