How to signoff
Pi-hole requires a sign-off message in the following format appear on each commit in the pull request:
The text can either be manually added to your commit body, or you can add either -s or --signoff to your usual git commit commands.
Creating your signoff¶
Git has a -s | --signoff command-line option to append this automatically to your commit message:
This will use your default git configuration which is found in .git/config and usually, it is the username systemaddress of the machine which you are using.
To change this, you can use the following commands (Note these only change the current repo settings, you will need to add --global for these commands to change the installation default).
Your name:
Your email:
How to amend a sign-off¶
If you have authored a commit that is missing the signed-off-by line, you can amend your commits and push them to GitHub
If you've pushed your changes to GitHub already you'll need to force push your branch after this with git push -f.