Created
September 7, 2023 11:39
-
-
Save rm3l/ea53535cd1cb5e72da51eb2d8746e031 to your computer and use it in GitHub Desktop.
Git hook for adding `Signed-off-by` to commit message - inspired from https://stackoverflow.com/a/46536244
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
#!/bin/sh | |
NAME=$(git config user.name) | |
EMAIL=$(git config user.email) | |
if [ -z "$NAME" ]; then | |
echo "empty git config user.name" | |
exit 1 | |
fi | |
if [ -z "$EMAIL" ]; then | |
echo "empty git config user.email" | |
exit 1 | |
fi | |
git interpret-trailers --if-exists doNothing --trailer \ | |
"Signed-off-by: $NAME <$EMAIL>" \ | |
--in-place "$1" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment