Description
This happens when you try to use graphify hooks install.
When the ~/.gitconfig is configured with
[core]
hooksPath = ~/gitconfig/hooks
The hooks install script will not install into the user's home path but into the project's <project>/~/gitconfig/hooks
Issue should be around hooks.py:121-140 not calling expanding ~
Workaround
Users could change hooksPath in .gitconfig with absolute path instead. The only downside is most users do stow their dotfiles.
Description
This happens when you try to use
graphify hooks install.When the
~/.gitconfigis configured withThe hooks install script will not install into the user's home path but into the project's
<project>/~/gitconfig/hooksIssue should be around hooks.py:121-140 not calling expanding
~Workaround
Users could change
hooksPathin.gitconfigwith absolute path instead. The only downside is most users do stow their dotfiles.