diff --git a/README.md b/README.md index c1cff445..919e5f2d 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ pip install git+https://github.com/commit-check/commit-check.git@main ``` Then, run `commit-check --help` or `cchk --help` (alias for `commit-check`) from the command line. -For more information, see the [docs](https://commit-check.github.io/commit-check/cli_args.html). +For more information, see the [docs](https://docs.commit-check.com/cli_args.html). ## Configuration @@ -209,7 +209,7 @@ repos: - --author-email-pattern=^.+@example\.com$ ``` -See the [Configuration documentation](https://commit-check.github.io/commit-check/configuration.html) for all available options. +See the [Configuration documentation](https://docs.commit-check.com/configuration.html) for all available options. ### Check Push Safety @@ -377,7 +377,7 @@ Available API functions: - `validate_author(name=None, email=None, *, config=None)` — validate author name/email - `validate_all(message, branch, author_name, author_email, *, config=None)` — run all checks at once -For detailed usage instructions including pre-commit hooks, CLI commands, and STDIN examples, see the [Usage Examples documentation](https://commit-check.github.io/commit-check/example.html). +For detailed usage instructions including pre-commit hooks, CLI commands, and STDIN examples, see the [Usage Examples documentation](https://docs.commit-check.com/example.html). ## Examples @@ -423,7 +423,7 @@ The branch should follow Conventional Branch. See https://conventionalbranch.org Suggest: Use / with allowed types or add branch name to allow_branch_names in config, or use ignore_authors in config branch section to bypass ``` -More examples see [example documentation](https://commit-check.github.io/commit-check/example.html). +More examples see [example documentation](https://docs.commit-check.com/example.html). ## Badging your repository diff --git a/docs/what-is-new.rst b/docs/what-is-new.rst index d9db1cbb..81d5ebab 100644 --- a/docs/what-is-new.rst +++ b/docs/what-is-new.rst @@ -121,7 +121,7 @@ ancestry via ``git merge-base --is-ancestor``. print(result["status"]) # "pass" See the `Push Safety section in README `_ -and `Push Validation Examples `_ +and `Push Validation Examples `_ for more details. diff --git a/pyproject.toml b/pyproject.toml index d5593cf1..cc58e8b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ commit-check = "commit_check.main:main" cchk = "commit_check.main:main" # short alias without clobbering system cc [project.urls] -documentation = "https://commit-check.github.io/commit-check/" +documentation = "https://docs.commit-check.com/" source = "https://github.com/commit-check/commit-check" tracker = "https://github.com/commit-check/commit-check/issues"