File: man-page.patch

package info (click to toggle)
patatt 0.6.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 368 kB
  • sloc: python: 1,083; sh: 26; makefile: 8
file content (62 lines) | stat: -rw-r--r-- 1,776 bytes parent folder | download
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
60
61
62
Description: Man page tweaks
Author: Anuradha Weeraman <anuradha@debian.org>
Forwarded: yes

--- a/man/patatt.5
+++ b/man/patatt.5
@@ -27,15 +27,15 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
 .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
 .in \\n[rst2man-indent\\n[rst2man-indent-level]]u
 ..
-.TH "PATATT" 5 "2022-08-22" "0.6.0" ""
+.TH "PATATT" 5 "2022-08-22" "0.6.3" "Linux Programmer's Manual"
 .SH NAME
-PATATT \- DKIM-like cryptographic patch attestation
+patatt \- DKIM-like cryptographic patch attestation
 .SH SYNOPSIS
 .sp
-patatt {sign,validate,genkey,install\-hook} [options]
+patatt {sign|validate|genkey|install\-hook} [options]
 .SH DESCRIPTION
 .sp
-This tools allows cryptographically signing patches sent via email
+This tool allows cryptographically signing patches sent via email
 by using DKIM\-like message headers. This approach is both effective and
 doesn\(aqt interfere with other code review tools the way inline or
 detached PGP signatures do. For a full overview of core concepts and
@@ -48,7 +48,7 @@ configuration. Try running the following in any git repository:
 .INDENT 3.5
 .sp
 .nf
-.ft C
+.ft CR
 git format\-patch \-1 \-\-stdout | patatt sign
 .ft P
 .fi
@@ -61,7 +61,7 @@ If patatt is not finding your PGP key, try adding the following to your
 .INDENT 3.5
 .sp
 .nf
-.ft C
+.ft CR
 [user]
     signingkey = [yourkeyid]
 .ft P
@@ -81,7 +81,7 @@ run the following command in the repository you want enabled for signing:
 .INDENT 3.5
 .sp
 .nf
-.ft C
+.ft CR
 $ patatt install\-hook
 .ft P
 .fi
@@ -93,7 +93,7 @@ Or you can install it manually:
 .INDENT 3.5
 .sp
 .nf
-.ft C
+.ft CR
 $ echo \(aqpatatt sign \-\-hook "${1}"\(aq >> .git/hooks/sendemail\-validate
 $ chmod a+x .git/hooks/sendemail\-validate
 .ft P