I\'m just starting to look into Git hooks, but I can\'t seem to get them to run.
I set up a local repository, so there is now a \'.git\' directory in my project folder.
Git hooks work on Git for Windows by default assuming the git hook script is simple.
Please Note: Git was made for shell interpretation; thus, using git hooks on a Windows command prompt or Windows made PowerShell will inherently have its flaws, and complete interoperability is not to be expected.
Using git hooks on Windows is possible, but has many drawbacks.
Git for Windows uses a shell emulator that makes bash and shell commands possible. This means that when a git hook is activated by git, the windows version will run the command using the shell emulator. Which in turn, will convert those shell commands to commands that the Windows operating system can understand. Meaning, simple shell scripts will work right off the bat. For example, the git hook pre-commit
that ships with an initialization of a git repository can be run with no modification.
git init
cd .git\hooks
This directory holds all the git hook scripts. Create a file named pre-commit
Note
The name of the file is important
replace the contents with the following shell script
#!/bin/sh
echo "Hello, World!"
test.txt
using the command echo "something" > text.txt
git add test.txt
git commit -m "test commit"
git commit -m "test commit"
Hello, World!
[master f00ccea] test commit
When using a very advanced shell script to do things in git hooks, Windows shell interpretation doesn't always stack up. For example, when using the Husky git hook plugin for NPM, along with the prettier formatter, the commands do not map 1-1. Meaning that your pre-commit git hook will fail on Windows.
A git hook is an executable script; however, you are using a command prompt script (.cmd
) and not a shell script (.sh
). If you would like this behavior you described on a Windows operating system then create the file named pre-commit
and place it in the .git\hooks
directory (relative to the project you are working on). Then place the following content in that file.
.git\hooks\pre-commit
#!/bin/sh
echo "HOOK RUNNING"
thisCausesError 2> .git/hooks/EmptyFile.txt
You will notice that the git hook works and outputs the words HOOK RUNNING
to the console, and the thisCauseError
will print an error message to stderr
that will be printed to the file EmptyFile.txt
.
What about naming your hook pre-commit
(without any extension) ?
EDIT: and add #!/bin/sh
on the first line or #!/bin/bash
(suggested in comments)
Tried solutions suggested in other answers and it didn't help to fix this problem: cannot spawn .git/hooks/pre-commit: No such file or directory
.
The solution which worked for me was to rename the file .git/pre-commit.sample
to .git/pre-commit
and insert the script for formatting changed files with prettier. The file with the name 'pre-commit' which I have created manually must have had some problems (encoding or end-line symbols remains unclear).