Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-01-11 | CI: Require a blank line between commit titles and bodies | Idan Horowitz | |
2021-11-28 | Meta: Allow overlong 'fixup!' commit titles in pre-commit hook | Ben Wiederhake | |
2021-11-02 | Meta: Use grep -E/F, not grep -P | thislooksfun | |
grep -E and -F are POSIX standard, and meets all our matching needs. | |||
2021-09-07 | CI+Meta: Add Signed-off-by tag filter to the commit message linter | Idan Horowitz | |
2021-07-27 | Meta: Ignore everything after the git cut line in a lint-commit.sh hook | Karol Kosek | |
I have set up a commit.verbose variable in my git config, which shows the patch diff on bottom of the commit message. Unfortunately the character limit was also applied to the diff, which meant that I got a false-positive lint error almost every time. | |||
2021-07-27 | Meta: Bring lint-commit.sh up to date with the CI commit linter | Idan Horowitz | |
This was missing 2 of the recently added checks. Also added a reminder in the CI linter to update the Meta (commit hook) version. | |||
2021-07-13 | CI: Disallow spaces just before the separating colon in commit titles | Idan Horowitz | |
2021-05-16 | Meta: Add a check for periods on the end of titles to commit linter | Idan Horowitz | |
2021-05-02 | Meta: Add a post-commit commit message linter hook | Idan Horowitz | |
This should help with getting commit messages tidy before they pass through CI's commit linter :^) For this hook to work pre-commit has to be explicitly installed via: `pre-commit install --hook-type commit-msg` |