1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
use crate::newtype;

use derive_more::Display;

use crate::git::{commit::Sha, Commit};

newtype!(GitRef, String, Display, "A git reference to a git commit.");
impl From<Commit> for GitRef {
    fn from(value: Commit) -> Self {
        Self(value.sha().to_string())
    }
}
impl From<Sha> for GitRef {
    fn from(value: Sha) -> Self {
        Self(value.to_string())
    }
}