开发者

why it is not possible to git add .git/hooks/my-hook

开发者 https://www.devze.com 2023-02-14 02:50 出处:网络
I would like to have some hooks always present in a clone of a given repository. Is there a way to add a file in .git/hooks in the repository?

I would like to have some hooks always present in a clone of a given repository. Is there a way to add a file in .git/hooks in the repository?

Thanks开发者_如何学JAVA


It is possible to define your own hooks in a git template, but even there, those hooks would be non-executable ones.

I.e. the user would still have to activate them (rename or activate the executable bit) once the repo is cloned.
That way, said user won't have any unwanted script executed without his/her full knowledge and explicit approval.
Doing otherwise would be too much of a security risk for anyone "blindly" cloning a repo.


Sounds like a security risk to me. Just because you clone some repository doesn't mean you want to give it the right to execute code.

You could put a copy of hooks into the versioned code and include some script file to allow the user to copy them to his hooks directory easily. And of course one you have hooks installed you can use them to keep themselves up-to-date.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号