[Libreoffice-commits] core.git: .git-hooks/README
Juergen Funk (via logerrit)
logerrit at kemper.freedesktop.org
Mon Sep 7 07:31:29 UTC 2020
.git-hooks/README | 6 ++++++
1 file changed, 6 insertions(+)
New commits:
commit 933dd275aafe3b3c7a76019de4878d222f0ebae6
Author: Juergen Funk <juergen.funk_ml at cib.de>
AuthorDate: Fri Sep 4 11:07:15 2020 +0200
Commit: Thorsten Behrens <Thorsten.Behrens at 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.Behrens at 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 ]
+
More information about the Libreoffice-commits
mailing list