Skip to content

Commit

Permalink
git: Fix git message parsing
Browse files Browse the repository at this point in the history
- Add data of Author and Date to footer
  • Loading branch information
Daniel Havlíček authored and Donach committed Jul 25, 2024
1 parent 2755233 commit 0bb0a17
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/git.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pub fn read(options: ReadCommitMessageOptions) -> Vec<String> {
// See https://git-scm.com/docs/git-log
let stdout = Command::new("git")
.arg("log")
.arg("--pretty=%B")
.arg("--pretty=%B%n|%n%nAuthor: %aN <%aE>%nDate: %ad%ncommit %H")
.arg("--no-merges")
.arg("--no-decorate")
.arg("--reverse")
Expand All @@ -55,8 +55,10 @@ fn extract_commit_messages(input: &str) -> Vec<String> {

for commit in commits {
let message_lines: Vec<&str> = commit.trim().lines().collect();
let message = message_lines.join("\n");
messages.push(message);
if !message_lines.is_empty() {
let message = message_lines.join("\n");
messages.push(message);
}
}

messages
Expand Down Expand Up @@ -89,7 +91,7 @@ pub fn parse_commit_message(

for line in lines_iter {
if line.trim().is_empty() {
if in_body {
if in_body || line.trim() == "|" {
in_body = false;
in_footer = true;
}
Expand Down

0 comments on commit 0bb0a17

Please sign in to comment.