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
It looks like this is your first contribution. We noticed the **DCO (Developer Certificate of Origin)** check might fail if your commits aren't signed.
50
-
51
-
To fix this, please ensure every commit has a `Signed-off-by: Name <email>` line. You can do this automatically by using the `-s` flag:
52
-
`git commit -s -m "Your message"`
53
-
54
-
For existing commits, you can fix them with:
55
-
`git commit --amend --signoff` or `git rebase -i HEAD~N --signoff` (where N is the number of commits)
56
-
The Developer Community DCO guide also provides helpful tips on fixing DCO inconveniences. Setting a commit hook in the git repository will automate adding the DCO signoff.
57
-
See https://github.com/p4lang/governance/wiki/P4-DCO-Guidelines for information.
0 commit comments