commit-message-validator/ru

From mediawiki.org
This page is a translated version of the page Commit-message-validator and the translation is 7% complete.

commit-message-validator is a tool that validates commit messages to our commit message guidelines. Требуется версия Python 3.6+. The preferred method of installation is to use a virtualenv and git hooks.

# Create a new virtualenv in the directory "cmv" in your home directory
cd ~
virtualenv cmv
# Install from pypi
~/cmv/bin/pip install commit-message-validator
# Configure the git hook. You'll need to do this for every git repo you wish to run it on
cd /path/to/git/repository
~/cmv/bin/commit-message-validator install

# Update to the latest release
~/cmv/bin/pip install -U commit-message-validator

The git hook will run after you make the commit, and tell you about any errors you might have made so you can go back and amend your change.

External links