My git configuration and tools.
Install hooks:
git config --global core.hooksPath PATH_TO_HOOKS_DIR
Set local config options:
user.name
user.email
commit.gpgSign
merge.verifySignatures
To install hooks call following command:
git config --global core.hooksPath PATH_TO_HOOKS_DIR
- pre-commit hook
- check if
user.name
,user.email
,user.signingkey
,commit.gpgSign
andmerge.verifySignatures
are configured
- check if