Revert "tdf#127471 Remove font width scaling hack"
[LibreOffice.git] / .git-hooks / README
blob93b00ee01c3bf0c0293a4cef6beb014f4084c814
1 Git hooks are executable scripts you can place in $GIT_DIR/hooks directory to trigger action at certain points.
3 To install manually, run:
5   cd .git/hooks && ln -s ../../.git-hooks/* ./
6   
7 When you using GIT for Windows, you need Windows links
8 Open a Dos-Box with admin rights then
9   cd .git/hooks
10   FOR /F " usebackq " %i IN (`dir /b ..\..\.git-hooks`) DO mklink %i ..\..\.git-hooks\%i
12 There are two groups of these hooks: client side and server side.
14 The client-side hooks:
15 are for client operations such as committing and merging.
17 The server-side hooks:
18 are for Git server operations such as receiving pushed commits.
20 See Also [ http://git-scm.com/book/en/Customizing-Git-Git-Hooks ]