在Git中运行预提交挂钩。有没有一种方法来验证脚本是否在运行?

3

我想运行Git,根据博客的建议,我使用$git init来初始化仓库,然后创建了一个.git文件夹,在hooks目录中存在钩子。然后按照脚本建议,我将pre-commit.sample重命名为pre-commit,但它没有起作用,所以我将其重命名为pre-commit.sh,但它似乎仍然没有在后台运行或者至少我不知道它是否在运行。

因此,为了知道它是否在后台运行,我使用了echo语句,但是它从未显示过。感到困惑,接下来我尝试在powershell中手动运行脚本.\pre-commit.sh,但echo语句没有在控制台上打印出来。首先,我不知道即使用户通过输入反馈来阻止脚本的进度,控制台是否会显示echo语句是否成功。

那么,请告诉我如何设置预提交钩子?我是否误读了该过程?我错过了什么吗?请让我知道。

我正在使用一个默认的预提交钩子实现,只是为了方便,我在这里放置它 -- 希望它能帮助到您:

#!/bin/sh
#
# An example hook script to verify what is about to be committed.
# Called by "git commit" with no arguments.  The hook should
# exit with non-zero status after issuing an appropriate message if
# it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-commit".

if git rev-parse --verify HEAD >/dev/null 2>&1
then
    against=HEAD
else
    # Initial commit: diff against an empty tree object
    against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
fi

# If you want to allow non-ASCII filenames set this variable to true.
allownonascii=$(git config --bool hooks.allownonascii)

# Redirect output to stderr.
exec 1>&2

# Cross platform projects tend to avoid non-ASCII filenames; prevent
# them from being added to the repository. We exploit the fact that the
# printable range starts at the space character and ends with tilde.
if [ "$allownonascii" != "true" ] &&
    # Note that the use of brackets around a tr range is ok here, (it's
    # even required, for portability to Solaris 10's /usr/bin/tr), since
    # the square bracket bytes happen to fall in the designated range.
    test $(git diff --cached --name-only --diff-filter=A -z $against |
      LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0
then
    cat <<\EOF
Error: Attempt to add a non-ASCII file name.

This can cause problems if you want to work with people on other platforms.

To be portable it is advisable to rename the file.

If you know what you are doing you can disable this check using:

  git config hooks.allownonascii true
EOF
    exit 1
fi

# If there are whitespace errors, print the offending file names and fail.
exec git diff-index --check --cached $against --

2
如文件所示,所需名称为“pre-commit”,而不是“precommit”或“precommit.sh”。 - user229044
1个回答

2
首先,您可以添加一个简单的回声。
其次,脚本将由 msys类似于bash的shell 运行,因此您不能直接从PowerShell Windows会话中运行它。
第三,确保您已经添加了一些元素到索引中,以便git提交有东西可提交(并且预提交钩子有理由被触发)。
在评论中补充道:
  • 应将其重命名为“pre-commit”,而不是“pre-commit.sh
  • 该脚本确实可以在命令提示符/PowerShell上运行并显示echo语句。

嗨!它有效...除了应该将其重命名为“pre-commit”而不是“pre-commit.sh”,并且脚本确实在命令提示符/ PowerShell上运行并显示echo-ed语句的部分之外,它按照提到的步骤工作 - 我想你会喜欢知道。非常感谢您的帮助 :) - Naveen Dennis
1
@dennis 太好了!我已经将您的评论包含在答案中,以增加其可见性。 - VonC
回显生效的原因是该特定命令被 cmd、PowerShell 和 Bash 识别。否则,你是对的,它无法运行。 - Naveen Dennis

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接