@@ -49,7 +49,7 @@ Non Administrative Installation:
4949
5050System Level Install:
5151
52- sudo curl https://bootstrap.pypa.io/get-pip.py | python - pre-commit
52+ curl https://bootstrap.pypa.io/get-pip.py | sudo python - pre-commit
5353
5454In a Python Project, add the following to your requirements.txt (or requirements-dev.txt):
5555
@@ -86,8 +86,8 @@ trailing-whitespace hook.
8686## Usage
8787
8888run ` pre-commit install ` to install pre-commit into your git hooks. pre-commit
89- will now run on every commit. Everytime you clone a project using pre-commit
90- running install should always be the first thing you do.
89+ will now run on every commit. Every time you clone a project using pre-commit
90+ running ` pre-commit install` should always be the first thing you do.
9191
9292If you want to manually run all pre-commit hooks on a repository, run
9393` pre-commit run --all-files ` . To run individual hooks use
@@ -103,7 +103,7 @@ and build a copy of node.
103103
104104pre-commit currently supports hooks written in JavaScript (node), Python, Ruby
105105and system installed scripts. As long as your git repo is an installable package
106- (gem, npm, pypi, etc) or exposes a executable, it can be used with pre-commit.
106+ (gem, npm, pypi, etc) or exposes an executable, it can be used with pre-commit.
107107Each git repo can support as many languages/hooks as you want.
108108
109109An executable must satisfy the following things:
0 commit comments