File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -1027,6 +1027,30 @@ as follows:
1027
1027
backends.ssh.allowed-signers = " /path/to/allowed-signers"
1028
1028
```
1029
1029
1030
+ ## Commit Signature Verification
1031
+
1032
+ ` jj ` attempts to verify any signatures found on commits when
1033
+ displaying them with ` jj log ` or ` jj show ` .
1034
+
1035
+ By default signature verification and display is ** disabled** as it incurs a
1036
+ performance cost when rendering medium to large change logs.
1037
+
1038
+ If you want to verify and display commit signatures, you can use the
1039
+ provided template:
1040
+ ``` sh
1041
+ jj log -Tbuiltin_log_detailed_with_sig
1042
+ ```
1043
+
1044
+ If you always want to display commit signatures, you can set the
1045
+ [ default template] ( #default-template ) :
1046
+ ``` toml
1047
+ [templates ]
1048
+ log = " builtin_log_detailed_with_sig"
1049
+ ```
1050
+
1051
+ See [ CommitSignature Type] ( ./templates.md#commitsignature-type ) for available template methods.
1052
+
1053
+
1030
1054
## Git settings
1031
1055
1032
1056
### Default remotes for ` jj git fetch ` and ` jj git push `
You can’t perform that action at this time.
0 commit comments