Full commit message (subject + body), for trailer-aware classification of merges and squashes.
(&self)
| 155 | /// Full commit message (subject + body), for trailer-aware |
| 156 | /// classification of merges and squashes. |
| 157 | fn full_message(&self) -> String { |
| 158 | match &self.metadata.description { |
| 159 | Some(desc) => format!("{}\n\n{}", self.metadata.message, desc), |
| 160 | None => self.metadata.message.clone(), |
| 161 | } |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | /// Whether to skip importing this commit because `atomic git push` created |
no test coverage detected