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
Enhance DCO welcome message with signing instructions (#714)
Updated the DCO welcome message to include additional instructions for signing commits and a link to the DCO guidelines.
Signed-off-by: Fabian Ruffy <5960321+fruffy@users.noreply.github.com>
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.
23
+
24
+
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:
25
+
`git commit -s -m "Your message"`
26
+
27
+
For existing commits, you can fix them with:
28
+
`git commit --amend --signoff` or `git rebase -i HEAD~N --signoff` (where N is the number of commits)
29
+
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.
30
+
See https://github.com/p4lang/governance/wiki/P4-DCO-Guidelines for information.
0 commit comments