Skip to content

Commit

Permalink
Don't use git:// URLs in pre-commit hooks
Browse files Browse the repository at this point in the history
Unauthenticated `git://` URLs are no longer supported by GitHub:

```
    fatal: remote error: 
      The unauthenticated git protocol on port 9418 is no longer supported.
    Please see https://github.blog/2021-09-01-improving-git-protocol-security-github/ for more information.
```
  • Loading branch information
mjpieters committed Mar 28, 2022
1 parent a90599e commit 6c3e99d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Expand Up @@ -53,7 +53,7 @@ repos:
- id: flake8
exclude: "^docs/"

- repo: git://github.com/Lucas-C/pre-commit-hooks-markup
- repo: https://github.com/Lucas-C/pre-commit-hooks-markup
rev: v1.0.1
hooks:
- id: rst-linter
Expand Down

0 comments on commit 6c3e99d

Please sign in to comment.