summaryrefslogtreecommitdiff
path: root/.git-hooks/README
diff options
context:
space:
mode:
authorJuergen Funk <juergen.funk_ml@cib.de>2020-09-04 11:07:15 +0200
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2020-09-07 09:30:52 +0200
commit933dd275aafe3b3c7a76019de4878d222f0ebae6 (patch)
tree8319a4deb76ca4b731f8846fb708193a245d7e3c /.git-hooks/README
parent7cd3527b8e5bccd99eb171a8d35c554b774a050f (diff)
Info git-hook for GIT for Windows
when you using git for windows (faster) then the git-hooks not work with "ln", it needs "mklink" from windows Change-Id: I15981f44293186efd3fbaa5c1a044348034cef28 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102032 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to '.git-hooks/README')
-rw-r--r--.git-hooks/README6
1 files changed, 6 insertions, 0 deletions
diff --git a/.git-hooks/README b/.git-hooks/README
index 56ac97496e86..93b00ee01c3b 100644
--- a/.git-hooks/README
+++ b/.git-hooks/README
@@ -3,6 +3,11 @@ Git hooks are executable scripts you can place in $GIT_DIR/hooks directory to tr
To install manually, run:
cd .git/hooks && ln -s ../../.git-hooks/* ./
+
+When you using GIT for Windows, you need Windows links
+Open a Dos-Box with admin rights then
+ cd .git/hooks
+ FOR /F " usebackq " %i IN (`dir /b ..\..\.git-hooks`) DO mklink %i ..\..\.git-hooks\%i
There are two groups of these hooks: client side and server side.
@@ -13,3 +18,4 @@ The server-side hooks:
are for Git server operations such as receiving pushed commits.
See Also [ http://git-scm.com/book/en/Customizing-Git-Git-Hooks ]
+