mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
9 lines
184 B
Bash
Executable File
9 lines
184 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Install hooks into .git/hooks directory
|
|
#
|
|
|
|
cp post-commit ../.git/hooks/post-commit
|
|
cp post-checkout ../.git/hooks/post-checkout
|
|
cp post-merge ../.git/hooks/post-merge
|