Skip to content

Commit fa25153

Browse files
add : to signoff trailer (#2197)
fixes #2196
1 parent a92be3b commit fa25153

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Fixes
1111
* respect configuration for remote when fetching (also applies to pulling) [[@cruessler](https://github.com/cruessler)] ([#1093](https://github.com/extrawurst/gitui/issues/1093))
12+
* 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))
1213

1314
## [0.26.0+1] - 2024-04-14
1415

src/popups/commit.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ impl CommitPopup {
470470
let mut msg = msg.to_owned();
471471
if let (Some(user), Some(mail)) = (user, mail) {
472472
msg.push_str(&format!(
473-
"\n\nSigned-off-by {user} <{mail}>"
473+
"\n\nSigned-off-by: {user} <{mail}>"
474474
));
475475
}
476476

0 commit comments

Comments
 (0)