1
0
Fork 0

No Issue: Add pre-push hook instruction for PowerShell (#4018)

The mklink command is not available in PowerShell, making the previous
documentation for pre-push hooks on Windows incomplete.
master
Björn Petersen 2019-07-15 23:04:46 +02:00 committed by Colin Lee
parent 706f7d5961
commit 680d38a655
1 changed files with 5 additions and 1 deletions

View File

@ -51,10 +51,14 @@ To add it on Mac/Linux, run this command from the project root:
```sh
ln -s ../../config/pre-push-recommended.sh .git/hooks/pre-push
```
or for Windows run this command with administrative privileges:
or for Windows run this command using the Command Prompt with administrative privileges:
```sh
mklink .git\hooks\pre-push ..\..\config\pre-push-recommended.sh
```
or using PowerShell:
```sh
New-Item -ItemType SymbolicLink -Path .git\hooks\pre-push -Value (Resolve-Path config\pre-push-recommended.sh)
```
To push without running the pre-push hook (e.g. doc updates):
```sh