How to run git hook script on windows, using repository through filesystem?

前端 未结 3 1903
暖寄归人
暖寄归人 2020-12-24 08:01

Because of its simplicity, we use remote repository placed on shared disk, accessing it using file system path (\\server\\share). Is is possible, in such case, to run hook s

3条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-24 08:11

    If you run the command:

    git config core.hooksPath .git-hooks
    

    This will look for the hooks in the folder .git-hooks from your project root, same as where you find .git folder. When the commands are run in this folder, take note that the directory being executed from then is the project root - and not in the .git-hooks folder having the actual hooks. This is why you get the "command not found".

    Example contents of .git-hooks/post-merge file

    !#!/bin/bash
    bower install
    

    The "bower install" command is run from the parent directory.

提交回复
热议问题