Skip to content

Commit

Permalink
add : to signoff trailer (#2197)
Browse files Browse the repository at this point in the history
fixes #2196
  • Loading branch information
semioticrobotic authored May 16, 2024
1 parent a92be3b commit fa25153
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/popups/commit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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}>"
));
}

Expand Down

0 comments on commit fa25153

Please sign in to comment.