Skip to content

Commit

Permalink
feat(gitcommit): add common git commit trailers (#447)
Browse files Browse the repository at this point in the history
  • Loading branch information
Frederick888 committed May 28, 2024
1 parent d17c2ea commit aa1583f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions snippets/gitcommit.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,17 @@
"breaking change conventional commit footer": {
"prefix": "BREAK",
"body": ["BREAKING CHANGE: $0"]
},
"co-authored by": {
"prefix": "co",
"body": ["Co-authored-by: ${1:name} <${2:email}>", "$0"]
},
"signed off by": {
"prefix": "si",
"body": ["Signed-off-by: ${1:name} <${2:email}>", "$0"]
},
"on behalf of": {
"prefix": "on",
"body": ["On-behalf-of: ${1:org} <${2:email}>", "$0"]
}
}

0 comments on commit aa1583f

Please sign in to comment.