We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5812553 commit 3cdbfcbCopy full SHA for 3cdbfcb
internal/git/git.go
@@ -47,7 +47,7 @@ func createTemplateFile(contributors []string, templateFilePath string) error {
47
defer templateFile.Close()
48
49
for _, contributor := range contributors {
50
- _, err := templateFile.WriteString(contributor + "\n")
+ _, err := templateFile.WriteString(fmt.Sprintf("Co-authored-by: %s \n", contributor))
51
if err != nil {
52
return err
53
}
0 commit comments