Harness the power of signify(1) to sign arbitrary git objects
0
fork

Configure Feed

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

refer to subcmd in raw docstr

+2 -2
+1 -1
src/raw/sign.rs
··· 8 8 9 9 use crate::utils; 10 10 11 - /// Execute the `sign` command. 11 + /// Execute the `raw sign` command. 12 12 pub fn command(key_path: PathBuf, rev: String) -> Result<()> { 13 13 let repo = utils::open_repository()?; 14 14 for secret_key in utils::get_secret_keys(key_path)?.into_values() {
+1 -1
src/raw/verify.rs
··· 7 7 8 8 use crate::utils; 9 9 10 - /// Execute the `verify` command. 10 + /// Execute the `raw verify` command. 11 11 pub fn command(key_path: PathBuf, recover: bool, tree_rev: String) -> Result<()> { 12 12 let repo = utils::open_repository()?; 13 13 for public_key in utils::get_public_keys(key_path)?.into_values() {