浏览代码

Merge pull request #37444 from nekomatata/hook-readme-windows

Pre-commit hook instructions on Windows
Rémi Verschelde 5 年之前
父节点
当前提交
2becffd4e8
共有 1 个文件被更改,包括 14 次插入3 次删除
  1. 14 3
      misc/hooks/README.md

+ 14 - 3
misc/hooks/README.md

@@ -20,7 +20,18 @@ contributors to make sure they comply with our requirements.
 Copy all the files from this folder into your `.git/hooks` folder, and make
 sure the hooks and helper scripts are executable.
 
+#### Linux/MacOS
+
 The hooks rely on bash scripts and tools which should be in the system `PATH`,
-so they should work out of the box on Linux/macOS, and might work on Windows
-when using `git-bash.exe` with `clang-format`, Python, `black`, etc. in the
-`PATH`.
+so they should work out of the box on Linux/macOS.
+
+#### Windows
+
+##### clang-format
+- Download LLVM for Windows (version 8 or later) from
+  <https://releases.llvm.org/download.html>
+- Make sure LLVM is added to the `PATH` during installation
+
+##### black
+- Python installation: make sure Python is added to the `PATH`
+- Install `black` - in any console: `pip3 install black`