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