You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Each commit must include a proper Signed-off-by: Your Name <your.email@example.com> line. Additionally, both the commit author and committer emails must either match one of the Signed-off-by lines or use a valid (non-anonymous) email address.
Tip: You can inspect your commits locally using:
git log --format=fuller
Missing correct Signed-off-by line
This pull request has commits that are missing proper Signed-off-by lines or use invalid email addresses.
Requirements:
Each commit must include at least one Signed-off-by: Your Name <your.email@example.com> line
Commit author email must appear in at least one Signed-off-by line
Commit committer email must appear in at least one Signed-off-by line (if not a GitHub bot)
Multiple Signed-off-by lines are allowed for co-authored commits
Anonymous GitHub emails (like @users.noreply.github.com) are not allowed
The Signed-off-by line indicates that you agree to the Developer Certificate of Origin (DCO)
How to fix:
# 1. Configure your git identity first (if needed):
git config user.name "Your Name"
git config user.email "your.email@example.com"# 2. For adding Signed-off-by to the last commit:
git commit --amend --signoff
# 3. For adding Signed-off-by to multiple commits:
git rebase -i HEAD~N --signoff
# 4. If commit author email is wrong, fix it:# For the last commit only:
git commit --amend --author="Your Name <your.email@example.com>" --signoff
# For multiple commits:
git rebase -i HEAD~N
# Mark commits as 'edit', then for each:
git commit --amend --author="Your Name <your.email@example.com>" --signoff
git rebase --continue
# 5. For co-authored commits, add multiple Signed-off-by lines manually:
git commit --amend
# Then add in the commit message:# Signed-off-by: Author One <author1@example.com># Signed-off-by: Author Two <author2@example.com># 6. Finally, force push your changes:
git push --force-with-lease
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR for #507.
Signed-off-by: jpka mvv@mvv.su