This commit is contained in:
Layla 2023-12-05 19:41:23 +00:00
parent bd03ce5c4c
commit c706c6cf8f
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ func (g *Git) Squash(input SquashInput) error {
message = strings.Join(messages, "\n")
// Add header comment
message = "# Squashed " + strconv.Itoa(commits) + " commits\n\n" + message
message = "Squashed " + strconv.Itoa(commits) + " commits\n\n" + message
}