Currently the user "only" receives
|
What should I do to fix it ? |
|
|
|
All proposed commits should include a Signed-off-by: <your-name> <your-email-address> line in their commit message. |
|
This is most conveniently done by using --signoff (-s) when running git commit.` |
when not all commits are signed-off.
That is good information on what the user should do the next time when contributing to the repo. But it doesn't help much to fix the current PR. Since I am only/still a beginner at git I have no good suggestion myself, but had seen
git remote update
git rebase --exec 'git commit --amend --no-edit -n -s' @{upstream}
in this comment. Assuming that this advice is useful, would it be worth to adapt helper.js accordingly?
Currently the user "only" receives
dco/libs/helper.js
Lines 9 to 12 in f2279e6
when not all commits are signed-off.
That is good information on what the user should do the next time when contributing to the repo. But it doesn't help much to fix the current PR. Since I am only/still a beginner at git I have no good suggestion myself, but had seen
in this comment. Assuming that this advice is useful, would it be worth to adapt
helper.jsaccordingly?