just playing with tangled
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

sign: link to docs in `jj sign` and `jj unsign`

+18
+5
cli/src/commands/sign.rs
··· 28 28 use crate::ui::Ui; 29 29 30 30 /// Cryptographically sign a revision 31 + /// 32 + /// This command requires configuring a [commit signing] backend. 33 + /// 34 + /// [commit signing]: 35 + /// https://jj-vcs.github.io/jj/latest/config/#commit-signing 31 36 #[derive(clap::Args, Clone, Debug)] 32 37 pub struct SignArgs { 33 38 /// What revision(s) to sign
+5
cli/src/commands/unsign.rs
··· 26 26 use crate::ui::Ui; 27 27 28 28 /// Drop a cryptographic signature 29 + /// 30 + /// See also [commit signing] docs. 31 + /// 32 + /// [commit signing]: 33 + /// https://jj-vcs.github.io/jj/latest/config/#commit-signing 29 34 #[derive(clap::Args, Clone, Debug)] 30 35 pub struct UnsignArgs { 31 36 /// What revision(s) to unsign
+8
cli/tests/cli-reference@.md.snap
··· 2227 2227 2228 2228 Cryptographically sign a revision 2229 2229 2230 + This command requires configuring a [commit signing] backend. 2231 + 2232 + [commit signing]: https://jj-vcs.github.io/jj/latest/config/#commit-signing 2233 + 2230 2234 **Usage:** `jj sign [OPTIONS]` 2231 2235 2232 2236 ###### **Options:** ··· 2621 2625 ## `jj unsign` 2622 2626 2623 2627 Drop a cryptographic signature 2628 + 2629 + See also [commit signing] docs. 2630 + 2631 + [commit signing]: https://jj-vcs.github.io/jj/latest/config/#commit-signing 2624 2632 2625 2633 **Usage:** `jj unsign [OPTIONS]` 2626 2634