.git-hooks/README | 6 ++++++ 1 file changed, 6 insertions(+) New commits: commit 933dd275aafe3b3c7a76019de4878d222f0ebae6 Author: Juergen Funk <juergen.funk...@cib.de> AuthorDate: Fri Sep 4 11:07:15 2020 +0200 Commit: Thorsten Behrens <thorsten.behr...@cib.de> CommitDate: Mon Sep 7 09:30:52 2020 +0200
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.behr...@cib.de> 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 ] + _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits