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.

all refs

+4
+4
src/utils.rs
··· 162 162 pub fn craft_reference(key_fingerprint: Oid, signed_object: Oid) -> String { 163 163 format!("refs/signify/signatures/{key_fingerprint}/{signed_object}") 164 164 } 165 + 166 + /// Git refspec describing all signify references. 167 + #[allow(dead_code)] 168 + pub const ALL_SIGNIFY_REFS: &str = "refs/signify/*";