Skip to content

Commit 742fecc

Browse files
authored
chore: add --signoff flag to git commit command (#30)
- Add the "--signoff" flag to the git commit command in line 87 of git.go. Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> fix #29
1 parent 7773093 commit 742fecc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

git/git.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ func (c *Command) commit(val string) *exec.Cmd {
8585
args := []string{
8686
"commit",
8787
"--no-verify",
88+
"--signoff",
8889
fmt.Sprintf("--message=%s", val),
8990
}
9091

0 commit comments

Comments
 (0)