add : to signoff trailer (#2197)

fixes #2196
This commit is contained in:
Bryan Behrenshausen 2024-05-16 07:57:51 -04:00 committed by GitHub
parent a92be3be9d
commit fa2515343b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixes
* respect configuration for remote when fetching (also applies to pulling) [[@cruessler](https://github.com/cruessler)] ([#1093](https://github.com/extrawurst/gitui/issues/1093))
* add `:` character to sign-off trailer to comply with Conventinoal Commits standard [@semioticrobotic](https://github.com/semioticrobotic) ([#2196](https://github.com/extrawurst/gitui/issues/2196))
## [0.26.0+1] - 2024-04-14

View file

@ -470,7 +470,7 @@ impl CommitPopup {
let mut msg = msg.to_owned();
if let (Some(user), Some(mail)) = (user, mail) {
msg.push_str(&format!(
"\n\nSigned-off-by {user} <{mail}>"
"\n\nSigned-off-by: {user} <{mail}>"
));
}