We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to run the script for a range of commits from command line?
Something like:
commit-msg-linter sha1 sha2
So it can be ran from CI to make sure every commit message from sha1 and sha2 are valid.
The text was updated successfully, but these errors were encountered:
it can't. You can check it out in https://github.com/legend80s/commit-msg-linter#how-it-works
Sorry, something went wrong.
How to get the commit messages from sha1 to sha2?
git log sha1..sha2 --pretty=format:%s
output
msg1 msg2 msg3
What is your expected output of commit-msg-linter sha1 sha2? Just exit with code 1 and print the invalid msg list?
No branches or pull requests
Is it possible to run the script for a range of commits from command line?
Something like:
So it can be ran from CI to make sure every commit message from sha1 and sha2 are valid.
The text was updated successfully, but these errors were encountered: