File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -80,13 +80,14 @@ The file paths in the examples are for Windows.
8080[ pre-commit] ( https://pre-commit.com/ ) hooks are supported.
8181
8282``` shell
83- $ pip install pre-commit
84- $ pre-commit install
85- $ pre-commit run # For manual running; considers only modified files
86- $ pre-commit run --all-files # For manual running; considers all files
83+ $ pip install pre-commit # If you don't already have pre-commit installed on your machine. Run once.
84+ $ pre-commit install # Sets up the pre-commit git hook script for the repository. Run once.
85+ $ pre-commit install --hook-type pre-push # Sets up the pre-push git hook script for the repository. Run once.
86+ $ pre-commit run # For manual running; considers only modified files.
87+ $ pre-commit run --all-files # For manual running; considers all files.
8788```
8889
89- After installing it, the provided [ pre-commit hook] ( .pre-commit-config.yaml ) will run automatically on ` git commit ` .
90+ After installing it, the provided [ pre-commit hook(s) ] ( .pre-commit-config.yaml ) will run automatically on ` git commit ` .
9091
9192## Running the Application
9293Executable files for Windows, macOS and Linux can be downloaded from
You can’t perform that action at this time.
0 commit comments