:gem: Automated analysis of Git repositories to support predictions and interventions with commit messages
Have you ever wanted a tool that could …
CommitCanvas already has a feature that helps users identify and fix commit messages that do not conform to the following standards:
Other features mentioned above are under development and will be added to CommitCanvas in the near future. Please see the issues for more information.
Currently commitcanvas
works with pre-commit
so please follow the steps below.
Add .pre-commit-config.yaml
to your repository.
Add following code block inside the .pre-commit-config.yaml
:
minimum_pre_commit_version: 1.21.0
repos:
# check with commitcanvas.
- repo: https://github.com/CommittedTeam/CommitCanvas
rev: the revision or tag to clone at
hooks:
- id: commitcanvas
language_version: python3.7
language: python
stages: [prepare-commit-msg]
Install pre-commit
, please refer the documentation
To use commitcanvas
as a prepare-commit-msg
hook, install pre-commit in .git/hooks/prepare-commit-msg
:
pre-commit install --hook-type prepare-commit-msg
NOTE: You need to run this command everytime you clone the repository, unless you configure pre-commit
globaly. Please follow the link for more information.
Every time you make a commit commitcanvas
will automatically check the commit message, and if there are any erros, git commit
command will be aborted before creating a commit, and helpul tips will be dispalyed about how to improve the commit message.
If you would like to skip commitcanvas errors, please run git commit
with SKIP=commitcanvas
. Please see
pre-commit documentation for more information about
environment variables.
Commitcanvas will also predict and attach the conventional commit label automatically. If you would like
to edit the message as well as the predicted label please run git commit
command with -e
option.
Commitcanvas can be used in project agnostic mode. In this mode commitcanvas will use deployed model that
was trained on over 300 open-source, critical, conventional repositories.
Unless project-specific path is provided commitcnavas will use the pre-deployed model as a default
Commitcnavas can also be used in project specific mode. In this mode commitcnavas can be trained on selected repository.
For instance if you would like to train commitcnavas on your repository you need to provide git url and the
local path to save the trained model.
Command to train and save the model: commitcanvas train <url> <save>
After the model is saved please add the path to pre-commit-config.yaml
file in your repository
Please see Commitcanvas-models for more information
about the deployed models
Clone the source code onto your machine
With HTTPS:
https://github.com/CommittedTeam/CommitCanvas.git
or With SSH:
git@github.com:CommittedTeam/CommitCanvas.git
Install Poetry (Recommended)
Poetry is a tool for dependency managment and packaging in Python. Please follow the documentation here on how to install poetry on your machine
When under developmnet always install the dependencies with poetry install
and run the program with poetry run python program_name
.
You can add new dependencies to pyproject.toml
either manually or byhttps://www.conventionalcommits.org/en/v1.0.0/ poetry add package_name
. Please refer to documentation here for more information.
Use poetry update
for updating the dependencies to their latest versions as neccessary. Please refer to documentation here for more information.
Please use pre-commit
hooks for linting the code. Install pre-commit with pip install pre-commit
or follow the documentation here. After cloning the repository locally run pre-commit install
to install pre-commit into your git hooks.
NOTE: You would have to run pre-commit install
every time you clone a repository. Please refer to documentation here for more information.
NOTE: You will not be able to complete commit unless all the linters pass. Only staged changes will be checked at the time of commit.
Developers of this program can run the test suite with Pytest
poetry run pytest
Run pre-commit install
to install pre-commit in .git/hooks/pre-commit
Use poetry run pre-commit run --all-files
to check the code with linters and get the diagnostic info.
Currently this project uses following linters:
You may add more linters to .pre-commit-config.yaml
Some of the existing tools that are similar to CommitCanvas:
Popular existing tools for checking the commit message usually have features to lint the message, fix or suggest labels, add or modify the checks and help the users keep creating explicit commit history. In addition to those functionalities, in the near future, CommitCanvas will also have a feature to predict the build status and let the users see if the commit is going to break the build before pushing their changes to Github. Please see the issues for more information.
We welcome everyone who is interested in helping improve CommitCanvas! If you are interested in being a contributor, please review our Code of Conduct and Guidelines for Contributors before raising an issue, or beginning a contribution.
Teona Bagashvili | Gregory M. Kapfhammer |