Git submodule commit hooks

一笑奈何 提交于 2019-12-01 02:42:32

If you have Git 2.10+ you can get the hooks directory by running:

`git rev-parse --git-path hooks`

Note: by default it is .git/hooks but if you are in a submodule it will be different.

Pre Git 2.10+ you would want something like:

`git rev-parse --git-dir`/hooks

More info at: Find path to git hooks directory on the shell

I've found solution couple of moments after posting this...

You can put hooks in .git/modules//hooks/ - eg. .git/modules/web/js/modules/rate if your submodule is located in /web/js/modules/rate directory.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!