diff --git a/web/content/docs/devguide/getting-started/get-the-source-code.md b/web/content/docs/devguide/getting-started/get-the-source-code.md index 9f5eeaf7d42b7f5e66dee0c9f5a5e36594d87617..23c134afee0217bddd2518c2e1eb233305871086 100644 --- a/web/content/docs/devguide/getting-started/get-the-source-code.md +++ b/web/content/docs/devguide/getting-started/get-the-source-code.md @@ -61,6 +61,8 @@ Install [pre-commit](https://pre-commit.com/) (a git hook manager) via Pythons ` pip3 install --user pre-commit ``` +This installed `pre-commit` to `.local/bin` in your home directory or to `C:\Users\[username]\AppData\Roaming\Python\Python37\Scripts` on Windows. Make sure to have this directory in your `PATH`! + Enable the hooks in the source code with: ```bash @@ -68,8 +70,6 @@ cd ogs pre-commit install ``` -For Windows only: This installed `pre-commit` to `.local/bin` (or `C:\Users\[username]\AppData\Roaming\Python\Python37\Scripts` on Windows) in your home directory. Make sure to have this directory in your `PATH`! - ## Optional: Working on a new feature You only have to follow the above steps once. From then on, whenever you want to work on a new feature, you can more easily interact with the remote repositories.